Restore commented out code

This commit is contained in:
Andrew Kingston 2024-04-08 16:49:37 +01:00
parent 1ec9acc855
commit 24d6bfcd0a
1 changed files with 3 additions and 4 deletions

View File

@ -109,13 +109,12 @@ export const deriveStores = context => {
}
export const createActions = context => {
const { focusedCellId, selectedRows, hoveredRowId } = context
const { focusedCellId, hoveredRowId } = context
// Callback when leaving the grid, deselecting all focussed or selected items
const blur = () => {
// focusedCellId.set(null)
// selectedRows.set({})
// hoveredRowId.set(null)
focusedCellId.set(null)
hoveredRowId.set(null)
}
return {