1
0
Fork 0
mirror of synced 2024-09-28 23:31:43 +12:00

lint fixes

This commit is contained in:
Keviin Åberg Kultalahti 2021-04-01 12:55:09 +02:00
parent dd5959eb0c
commit 66cd1c6c04
2 changed files with 7 additions and 4 deletions

View file

@ -107,7 +107,10 @@ export function createTablesStore() {
state.draft.indexes = indexes
}
state.draft.schema = {...state.draft.schema, [field.name]: cloneDeep(field)}
state.draft.schema = {
...state.draft.schema,
[field.name]: cloneDeep(field),
}
save(state.draft)
return state
})

View file

@ -37,7 +37,7 @@ export function createViewsStore() {
viewTable.views[view.name] = viewMeta
await tables.save(viewTable)
update(state => ({...state, selected: viewMeta}))
update(state => ({ ...state, selected: viewMeta }))
},
}
}