fix: miss model file path in cloning

This commit is contained in:
jialin
2026-02-11 11:05:43 +08:00
parent 3f90642726
commit 2ba94f7524
13 changed files with 129 additions and 52 deletions
@@ -273,7 +273,11 @@ const AddModal: React.FC<AddModalProps> = ({
<Tag
variant="filled"
color="error"
style={{ padding: '6px 8px', marginBottom: 16 }}
style={{
padding: '6px 8px',
marginBottom: 16,
width: '100%'
}}
>
{intl.formatMessage({ id: 'apikeys.table.save.tips' })}
</Tag>
@@ -281,14 +285,7 @@ const AddModal: React.FC<AddModalProps> = ({
<SealInput.Input
label={intl.formatMessage({ id: 'apikeys.form.apikey' })}
value={apikeyValue}
addAfter={
<CopyButton
text={apikeyValue}
shape="default"
size="middle"
type="text"
></CopyButton>
}
addAfter={<CopyButton text={apikeyValue}></CopyButton>}
></SealInput.Input>
</Form.Item>
)}