style: instance cell style

This commit is contained in:
jialin
2026-03-26 18:20:55 +08:00
committed by jialin
parent 43dfc7e1f0
commit 144d5a6d5f
14 changed files with 125 additions and 51 deletions
+4 -1
View File
@@ -53,7 +53,9 @@ const InstanceView = forwardRef((props, ref) => {
const handleSelect = useMemoizedFn((val: any, row: ListItem) => {
if (val === 'delete') {
handleDelete(row);
handleDelete(row, {
okText: 'common.button.delrecreate'
});
}
if (val === 'viewlog') {
@@ -151,6 +153,7 @@ const InstanceView = forwardRef((props, ref) => {
<Table
rowKey="id"
tableLayout="fixed"
className={'scroll-table'}
sortDirections={TABLE_SORT_DIRECTIONS}
showSorterTooltip={false}
dataSource={dataSource.dataList}