Commit 80f6cb2f authored by chechunchi's avatar chechunchi

fix

parent 35225f7c
Pipeline #21612 passed with stages
in 12 minutes and 58 seconds
......@@ -136,14 +136,15 @@ export const SelectActionsModal = () => {
setResponse(values);
}}
>
<Row>
<Tabs
type="card"
items={grouped.map((group, idx) => {
return {
label: fetchStrings("!system", group[0] + 1000),
key: idx.toString(),
children: group[1].map((option, idx) => {
children: (
<Row>
{group[1].map((option, idx) => {
return (
<Col span={4} key={idx}>
<HoverCheckCard
......@@ -164,11 +165,12 @@ export const SelectActionsModal = () => {
/>
</Col>
);
}),
})}
</Row>
),
};
})}
/>
</Row>
<p>{selecteds.length > 0 ? fetchStrings("!system", 212) : ""}</p>
<Row>
{selecteds.concat(mustSelects).map((option, idx) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment