diff --git a/src/modules/modals/CreateColumn.vue b/src/modules/modals/CreateColumn.vue index a8b62d5e6..69cca3f4d 100644 --- a/src/modules/modals/CreateColumn.vue +++ b/src/modules/modals/CreateColumn.vue @@ -217,7 +217,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() { diff --git a/src/modules/modals/EditColumn.vue b/src/modules/modals/EditColumn.vue index ba7c97bcf..2a146d66a 100644 --- a/src/modules/modals/EditColumn.vue +++ b/src/modules/modals/EditColumn.vue @@ -133,7 +133,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() {