Skip to content

Commit 8edccb9

Browse files
author
Joe Wemyss
committed
updated vee-validate to fix vuejs/devtools-v6#499
1 parent 2708aca commit 8edccb9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"firebase": "^4.8.1",
2828
"localforage": "^1.5.5",
2929
"loglevel": "^1.6.0",
30-
"vee-validate": "^2.0.0",
30+
"vee-validate": "^2.0.3",
3131
"vue": "^2.3.3",
3232
"vue-router": "^2.3.1",
3333
"vuetify": "^1.0.0-beta.2",

src/app/profile/components/AddGroupForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
computed: {
5353
formValid () {
54-
return this.fields.groupName.dirty && !this.errors.has('groupName');
54+
return !!this.fields.groupName && this.fields.groupName.dirty && !this.errors.has('groupName');
5555
}
5656
},
5757
mixins: [FormMixin],

src/app/profile/components/AddGroupFormDialogAdapter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
submitClicked () {
5858
Logger.info('submit clicked');
5959
if (this.askTrusted) {
60-
this.cacheState();
60+
this.cacheValues();
6161
Bus.$emit('show_dialog', {
6262
card: 'trusted-device-request-card',
6363
persistent: true

0 commit comments

Comments
 (0)