Commit 165b9d19 by zhaochengxiang

模型类型组件宽度设置为100

parent 265bf08d
...@@ -348,7 +348,7 @@ const FC = (props) => { ...@@ -348,7 +348,7 @@ const FC = (props) => {
loading={loadingTemplates} loading={loadingTemplates}
value={currentTemplateValue} value={currentTemplateValue}
onChange={onTemplateChange} onChange={onTemplateChange}
style={{ width: 85 }} style={{ width: 100 }}
> >
{ {
(templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>) (templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>)
......
...@@ -806,7 +806,7 @@ const AssetManageTree = (props) => { ...@@ -806,7 +806,7 @@ const AssetManageTree = (props) => {
getAllDirectoryAsTree(false) getAllDirectoryAsTree(false)
}, 100) }, 100)
}} }}
style={{ width: 80 }} style={{ width: 100 }}
> >
{ {
(templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>) (templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>)
......
...@@ -601,7 +601,7 @@ const AssetTree = (props) => { ...@@ -601,7 +601,7 @@ const AssetTree = (props) => {
getAllDirectoryAsTree(false) getAllDirectoryAsTree(false)
}, 100) }, 100)
}} }}
style={{ width: 80 }} style={{ width: 100 }}
> >
{ {
(templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>) (templates??[]).map((item, index) => <Select.Option key={index} value={item.type}>{item.name}</Select.Option>)
......
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