This commit is contained in:
2020-07-16 19:32:59 +00:00
parent 57c478ae81
commit a8187678eb

View File

@@ -129,19 +129,6 @@
@input="fieldValueChanged('inTags')"
></gz-tag-picker>
</v-col>
<v-col v-if="showOutTags" cols="12">
<gz-tag-picker
v-model="obj.outTags"
:label="$ay.t('OutTags')"
:readonly="formState.readOnly"
:disabled="formState.readOnly"
ref="outTags"
:data-cy="!!$ay.dev ? 'outTags' : false"
:error-messages="form().serverErrors(this, 'outTags')"
@input="fieldValueChanged('outTags')"
></gz-tag-picker>
</v-col>
</v-row>
</v-form>
</v-col>
@@ -239,8 +226,7 @@ export default {
public NotifyDeliveryMethod DeliveryMethod { get; set; }
public string DeliveryAddress { get; set; }
public long? AttachReportId { get; set; }
public List<string> InTags { get; set; }
public List<string> OutTags { get; set; } */
public List<string> InTags { get; set; }*/
obj: {
id: 0,
concurrency: 0,
@@ -253,8 +239,7 @@ export default {
deliveryMethod: 0,
deliveryAddress: null,
attachReportId: null,
inTags: [],
outTags: []
inTags: []
},
formState: {
@@ -363,9 +348,6 @@ export default {
},
showInTags() {
return true;
},
showOutTags() {
return true;
}
},
methods: {
@@ -725,7 +707,6 @@ async function fetchTranslatedText(vm) {
"NotifyEventType",
"NotifyDeliveryAddress",
"InTags",
"OutTags",
"NotifyEventObjectDeleted",
"NotifyEventObjectCreated",
"NotifyEventObjectModified",