Fix boardcard selected state and fix table new row being added on top
This commit is contained in:
@ -10,7 +10,7 @@ export function useUpsertTableRowId() {
|
||||
.getLoadable(tableRowIdsState)
|
||||
.valueOrThrow();
|
||||
|
||||
set(tableRowIdsState, Array.from(new Set([...currentRowIds, rowId])));
|
||||
set(tableRowIdsState, Array.from(new Set([rowId, ...currentRowIds])));
|
||||
},
|
||||
[],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user