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 = () => { ...@@ -136,14 +136,15 @@ export const SelectActionsModal = () => {
setResponse(values); setResponse(values);
}} }}
> >
<Row>
<Tabs <Tabs
type="card" type="card"
items={grouped.map((group, idx) => { items={grouped.map((group, idx) => {
return { return {
label: fetchStrings("!system", group[0] + 1000), label: fetchStrings("!system", group[0] + 1000),
key: idx.toString(), key: idx.toString(),
children: group[1].map((option, idx) => { children: (
<Row>
{group[1].map((option, idx) => {
return ( return (
<Col span={4} key={idx}> <Col span={4} key={idx}>
<HoverCheckCard <HoverCheckCard
...@@ -164,11 +165,12 @@ export const SelectActionsModal = () => { ...@@ -164,11 +165,12 @@ export const SelectActionsModal = () => {
/> />
</Col> </Col>
); );
}), })}
</Row>
),
}; };
})} })}
/> />
</Row>
<p>{selecteds.length > 0 ? fetchStrings("!system", 212) : ""}</p> <p>{selecteds.length > 0 ? fetchStrings("!system", 212) : ""}</p>
<Row> <Row>
{selecteds.concat(mustSelects).map((option, idx) => { {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