diff options
| author | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-07 18:17:59 +0900 |
|---|---|---|
| committer | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-07 18:17:59 +0900 |
| commit | 07efc8e1504450b4eb6bc29f43986a9d538d0680 (patch) | |
| tree | 8faf4958438cfad54383fc2df06bd2496e7acdc1 /src/web/app/dev | |
| parent | wip (diff) | |
| download | sharkey-07efc8e1504450b4eb6bc29f43986a9d538d0680.tar.gz sharkey-07efc8e1504450b4eb6bc29f43986a9d538d0680.tar.bz2 sharkey-07efc8e1504450b4eb6bc29f43986a9d538d0680.zip | |
wip
Diffstat (limited to 'src/web/app/dev')
| -rw-r--r-- | src/web/app/dev/tags/new-app-form.tag | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/web/app/dev/tags/new-app-form.tag b/src/web/app/dev/tags/new-app-form.tag index c9518d8deb..aba6b1524f 100644 --- a/src/web/app/dev/tags/new-app-form.tag +++ b/src/web/app/dev/tags/new-app-form.tag @@ -183,7 +183,7 @@ this.nidState = null; this.onChangeNid = () => { - const nid = this.refs.nid.value; + const nid = this.$refs.nid.value; if (nid == '') { this.update({ @@ -223,13 +223,13 @@ }; this.onsubmit = () => { - const name = this.refs.name.value; - const nid = this.refs.nid.value; - const description = this.refs.description.value; - const cb = this.refs.cb.value; + const name = this.$refs.name.value; + const nid = this.$refs.nid.value; + const description = this.$refs.description.value; + const cb = this.$refs.cb.value; const permission = []; - this.refs.permission.querySelectorAll('input').forEach(el => { + this.$refs.permission.querySelectorAll('input').forEach(el => { if (el.checked) permission.push(el.value); }); |