Commit 165b9d19 by zhaochengxiang

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

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