1
0
Fork 0
mirror of synced 2024-09-17 17:57:47 +12:00

Fix issue with viewV2 renaming

This commit is contained in:
Andrew Kingston 2023-08-03 13:40:36 +01:00
parent f5e5a883cf
commit 19ca7e4a0a

View file

@ -54,7 +54,8 @@ export function createViewsV2Store() {
} }
const save = async view => { const save = async view => {
const savedView = await API.viewV2.update(view) const res = await API.viewV2.update(view)
const savedView = res?.data
// Update tables // Update tables
tables.update(state => { tables.update(state => {