Browse Source
fix: progress components key is not unique
组件的key值应该是唯一的
pull/4/head
bqy
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/packages/base-widgets/process/index.tsx
|
|
|
@ -8,7 +8,7 @@ import { |
|
|
|
import { VisualEditorComponent } from '@/visual-editor/visual-editor.utils' |
|
|
|
|
|
|
|
export default { |
|
|
|
key: 'divider', |
|
|
|
key: 'process', |
|
|
|
moduleName: 'baseWidgets', |
|
|
|
label: '进度条', |
|
|
|
preview: () => <Progress style="width:190px" percentage={0} />, |
|
|
|
|