Commit f3775aa6 by zhaochengxiang

bug fix

parent 717d5c74
...@@ -59,7 +59,7 @@ const NameInput = ({ value, prefixName, onChange }) => { ...@@ -59,7 +59,7 @@ const NameInput = ({ value, prefixName, onChange }) => {
}, [value, prefixName]) }, [value, prefixName])
return ( return (
<Input value={customName} onChange={(e) => { <Input className='prefix-input' value={customName} onChange={(e) => {
onChange?.(`${prefixName??''}${e.target.value}`) onChange?.(`${prefixName??''}${e.target.value}`)
}} }}
addonBefore={prefixName&&<Tooltip title={`简称:${prefixName}`}> addonBefore={prefixName&&<Tooltip title={`简称:${prefixName}`}>
......
.model-import-action-header {
.yy-input-group-addon {
padding: 0 2px 0 11px;
}
.prefix-input {
.yy-input {
padding: 4px 11px 4px 2px;
}
}
}
.model-import-action-header-readolny { .model-import-action-header-readolny {
.yy-form-item-label > label { .yy-form-item-label > label {
height: auto; height: auto;
......
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