We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4a465 commit 462999aCopy full SHA for 462999a
docs/List.md
@@ -1032,4 +1032,17 @@ const ProductList = () => (
1032
...
1033
</List>
1034
)
1035
+```
1036
+
1037
+## How to disable `storeKey`
1038
+You can disable `storeKey` feature by setting the `storeKey` prop to `false`. When disabled, parameters will not be persisted in the store.
1039
1040
+```tsx
1041
+import { List } from 'react-admin';
1042
1043
+const ProductList = () => (
1044
+ <List storeKey={false}>
1045
+ ...
1046
+ </List>
1047
+)
1048
```
0 commit comments