Commit 6017dbe3 authored by 涂伟's avatar 涂伟

fix: '消息推送人选择显示bug修复'

parent c1d75b5a
Pipeline #88394 passed with stages
...@@ -89,7 +89,7 @@ const RoleModal = porps => { ...@@ -89,7 +89,7 @@ const RoleModal = porps => {
> >
<div className={styles.checkContainer}> <div className={styles.checkContainer}>
{roleList.map((item, index) => ( {roleList.map((item, index) => (
<div className={styles.checkContent} key={item.visibleTitle}> item.options.length ? <div className={styles.checkContent} key={item.visibleTitle}>
<div className={styles.topCheckbox}> <div className={styles.topCheckbox}>
<Checkbox <Checkbox
indeterminate={item.indeterminate} indeterminate={item.indeterminate}
...@@ -112,7 +112,7 @@ const RoleModal = porps => { ...@@ -112,7 +112,7 @@ const RoleModal = porps => {
))} ))}
</CheckboxGroup> </CheckboxGroup>
</div> </div>
</div> </div> : null
))} ))}
</div> </div>
</Modal> </Modal>
......
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