mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-10 01:48:18 +00:00
Merge branch 'fix/minor-bugs-lianjie.lj' into 'release/0.9.12'
fix: 多选时设置项异常 多选两个文本输入框组件,右侧属性面板出现 category 这样的属性 See merge request !946011
This commit is contained in:
commit
88f4aa02c4
@ -21,7 +21,7 @@ class SettingFieldView extends Component<{ field: SettingField }> {
|
|||||||
const { prototype } = componentMeta;
|
const { prototype } = componentMeta;
|
||||||
let visible;
|
let visible;
|
||||||
try {
|
try {
|
||||||
visible = field.isSingle && typeof condition === 'function' ? condition(field) !== false : true;
|
visible = typeof condition === 'function' ? condition(field) !== false : true;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('exception when condition (hidden) is excuted', error);
|
console.error('exception when condition (hidden) is excuted', error);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user