fix: btn位置

This commit is contained in:
archer
2023-04-14 01:37:45 +08:00
parent 56a0b48b97
commit 6ff5db7b41

View File

@@ -67,14 +67,15 @@ const ModelTable = ({
key: 'control',
render: (item: ModelSchema) => (
<>
<Button mr={3} onClick={() => handlePreviewChat(item._id)}>
</Button>
<Button
mr={3}
variant={'outline'}
onClick={() => router.push(`/model/detail?modelId=${item._id}`)}
>
</Button>
<Button onClick={() => handlePreviewChat(item._id)}></Button>
</>
)
}