-
-
Notifications
You must be signed in to change notification settings - Fork 642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useLiveQuery does not update when multiple items are deleted #2067
Comments
it seems that dexie observable in general does not react well to bulk actions. console.js:288 DexieError2 {name: 'DatabaseClosedError', message: 'Database has been closed', inner: null} |
Thanks @wesbos, I will look into this. |
@imarinoff The DatabaseClosedError happens when the database has been closed and seem to be off-topic for this issue. Please file another issue with a repro for when it happens |
hello! I have a query like this:
When I delete a single item, it is reactive and updates:
But when I try to delete multiple items at once, it deletes the item, but the query does not react:
I thought it may be related to: #2021 but it seem anything that deletes more than one record doesnt cause reactivity
The text was updated successfully, but these errors were encountered: