Commit 380e5d22fcd8bc6ce2ef83bc4f7b43b9bdc1a71e
1 parent
65deef4f
chore(core-editor): make props editor form size smaller
Showing
1 changed file
with
1 additions
and
1 deletions
front-end/h5/src/components/core/editor.js
| ... | ... | @@ -113,7 +113,7 @@ export default { |
| 113 | 113 | const editingElement = this.editingElement |
| 114 | 114 | const propsConfig = editingElement.editorConfig.propsConfig |
| 115 | 115 | return ( |
| 116 | - <el-form ref="form" label-width="100px" size="mini"> | |
| 116 | + <el-form ref="form" label-width="100px" size="mini" label-position="left"> | |
| 117 | 117 | { |
| 118 | 118 | Object.keys(propsConfig).map(propKey => { |
| 119 | 119 | const item = propsConfig[propKey] | ... | ... |