mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-07-15 22:32:29 -05:00
fix(view): do not crash when saving a view
Resolves https://github.com/go-vikunja/vikunja/issues/312
(cherry picked from commit 435cb2e7f7)
This commit is contained in:
@@ -99,7 +99,7 @@ async function saveView(view: IProjectView) {
|
||||
if (view?.viewKind !== 'kanban') {
|
||||
view.bucketConfigurationMode = 'none'
|
||||
}
|
||||
const result = await ProjectViewService.update(view)
|
||||
const result = await projectViewService.update(view)
|
||||
projectStore.setProjectView(result)
|
||||
viewToEdit.value = null
|
||||
success({message: t('project.views.updateSuccess')})
|
||||
|
||||
Reference in New Issue
Block a user