Skip to content

Commit

Permalink
fix #1099
Browse files Browse the repository at this point in the history
  • Loading branch information
kirisakow authored May 23, 2024
1 parent 185bfe4 commit bdb21b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/main/partials/ColumnFormComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
if (this.$options.components && this.$options.components[form]) {
return form
} else {
throw Error('Form ' + form + ' does no exist')
throw Error('Form ' + form + ' does not exist')
}
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modals/CreateColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default {
if (this.$options.components && this.$options.components[form]) {
return form
} else {
throw Error('Form ' + form + ' does no exist')
throw Error('Form ' + form + ' does not exist')
}
},
type() {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modals/EditColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default {
if (this.$options.components && this.$options.components[form]) {
return form
} else {
throw Error('Form ' + form + ' does no exist')
throw Error('Form ' + form + ' does not exist')
}
},
updateTime() {
Expand Down

0 comments on commit bdb21b3

Please sign in to comment.