1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-02 08:00:03 +00:00
bramw_baserow/web-frontend/modules/database/middleware/tableLoading.js
2022-07-29 09:12:43 +00:00

8 lines
277 B
JavaScript

/**
* Middleware that changes the table loading state to true before the route
* changes. That way we can show a loading animation to the user when switching
* between views.
*/
export default async function ({ store }) {
await store.dispatch('table/setLoading', true)
}