diff options
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/tags/index.tag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/auth/tags/index.tag b/src/web/app/auth/tags/index.tag index e71214f4a3..8d70a4162b 100644 --- a/src/web/app/auth/tags/index.tag +++ b/src/web/app/auth/tags/index.tag @@ -114,13 +114,13 @@ state: 'waiting' }); - this.refs.form.on('denied', () => { + this.$refs.form.on('denied', () => { this.update({ state: 'denied' }); }); - this.refs.form.on('accepted', this.accepted); + this.$refs.form.on('accepted', this.accepted); } }).catch(error => { this.update({ |