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', 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>
</> </>
) )
} }