This commit is contained in:
2020-07-23 22:45:51 +00:00
parent a1f49341c3
commit 3f6d99113f

View File

@@ -5,7 +5,7 @@
<v-form ref="form">
<v-row>
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
{{ obj }}
<!-- {{ obj }} -->
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select
v-model="obj.eventType"
@@ -349,10 +349,13 @@ export default {
}
},
showAttachReportId() {
return true;
//TODO: Many others as well, but for now until those objects exist
return this.obj.eventType != 27; //general notification has no tags
//return true;
},
showTags() {
return true;
return this.obj.eventType != 27; //general notification has no tags
}
},
methods: {