docs(changeset): Fixed search and allow row selection for only rows with keys

This commit is contained in:
Hein
2025-10-30 10:42:07 +02:00
parent 0943ffc483
commit b4058f1ef3
5 changed files with 42 additions and 17 deletions

View File

@@ -916,7 +916,7 @@ const { Provider, useStore: useGridlerStore } = createSyncStore<GridlerStoreStat
hideMenu: props.hideMenu ?? menus.hide,
scrollToRowKey: props.scrollToRowKey ?? props.selectedRowKey ?? getState('scrollToRowKey'),
showMenu: props.showMenu ?? menus.show,
total_rows: props.total_rows ?? getState('total_rows') ?? 0,
total_rows: getState('total_rows') ?? props.total_rows,
};
}
);