Fix issue with viewV2 renaming

This commit is contained in:
Andrew Kingston 2023-08-03 13:40:36 +01:00
parent f5e5a883cf
commit 19ca7e4a0a
1 changed files with 2 additions and 1 deletions

View File

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