mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
Fix column width declarations
This commit is contained in:
parent
481258484c
commit
47ecbf0601
3 changed files with 5 additions and 5 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue