mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 20:40:21 +02:00
Fix column width declarations
This commit is contained in:
@@ -251,10 +251,10 @@ export const useListStore = create<ListSlice>()(
|
||||
},
|
||||
setTableColumns: (args) => {
|
||||
set((state) => {
|
||||
state.item[args.key as keyof ListState['item']].table.columns = {
|
||||
state.item[args.key as keyof ListState['item']].table.columns = [
|
||||
...state.item[args.key as keyof ListState['item']].table.columns,
|
||||
...args.data,
|
||||
};
|
||||
];
|
||||
});
|
||||
},
|
||||
setTablePagination: (args) => {
|
||||
|
||||
Reference in New Issue
Block a user