summaryrefslogtreecommitdiff
path: root/src/web/app/dev
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/dev')
-rw-r--r--src/web/app/dev/tags/new-app-form.tag12
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);
});