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
})