Commit 6ff5db7b by archer

fix: btn位置

parent 56a0b48b
...@@ -67,14 +67,15 @@ const ModelTable = ({ ...@@ -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>
</> </>
) )
} }
......
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 sign in to comment