mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-19 01:09:49 +08:00
fix: btn位置
This commit is contained in:
@@ -67,14 +67,15 @@ const ModelTable = ({
|
|||||||
key: 'control',
|
key: 'control',
|
||||||
render: (item: ModelSchema) => (
|
render: (item: ModelSchema) => (
|
||||||
<>
|
<>
|
||||||
|
<Button mr={3} onClick={() => handlePreviewChat(item._id)}>
|
||||||
|
对话
|
||||||
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
mr={3}
|
|
||||||
variant={'outline'}
|
variant={'outline'}
|
||||||
onClick={() => router.push(`/model/detail?modelId=${item._id}`)}
|
onClick={() => router.push(`/model/detail?modelId=${item._id}`)}
|
||||||
>
|
>
|
||||||
编辑
|
编辑
|
||||||
</Button>
|
</Button>
|
||||||
<Button onClick={() => handlePreviewChat(item._id)}>对话</Button>
|
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user