Commit d8f101d98ba4fc8bfae481c8a17c04ddde56cb75
1 parent
460a42bf
perf: visual board disabled viewType
Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -35,7 +35,7 @@ export const formSchema: FormSchema[] = [ |
35 | 35 | }, |
36 | 36 | { |
37 | 37 | field: 'viewType', |
38 | - label: '名称', | |
38 | + label: '公开性', | |
39 | 39 | component: 'RadioGroup', |
40 | 40 | defaultValue: ViewType.PRIVATE_VIEW, |
41 | 41 | helpMessage: [ |
... | ... | @@ -45,7 +45,7 @@ export const formSchema: FormSchema[] = [ |
45 | 45 | placeholder: '请选择公开性', |
46 | 46 | options: [ |
47 | 47 | { label: '私有看板', value: ViewType.PRIVATE_VIEW }, |
48 | - { label: '公开看板', value: ViewType.PUBLIC_VIEW }, | |
48 | + { label: '公开看板', value: ViewType.PUBLIC_VIEW, disabled: true }, | |
49 | 49 | ], |
50 | 50 | }, |
51 | 51 | }, | ... | ... |