This commit is contained in:
2021-07-27 18:22:25 +00:00
parent e31787d05c
commit b1d8648add
2 changed files with 44 additions and 51 deletions

View File

@@ -391,54 +391,6 @@
></v-checkbox>
</v-col>
<v-col
v-if="
form().showMe(this, 'CopyWiki') &&
!(
value.userIsSubContractorFull ||
value.userIsSubContractorRestricted
)
"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-checkbox
v-model="value.copyWiki"
:readonly="formState.readOnly || value.userIsTechRestricted"
:label="$ay.t('CopyWiki')"
ref="copyWiki"
data-cy="copyWiki"
:error-messages="form().serverErrors(this, 'copyWiki')"
@change="fieldValueChanged('copyWiki')"
></v-checkbox>
</v-col>
<v-col
v-if="
form().showMe(this, 'CopyAttachments') &&
!(
value.userIsSubContractorFull ||
value.userIsSubContractorRestricted
)
"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-checkbox
v-model="value.copyAttachments"
:readonly="formState.readOnly || value.userIsTechRestricted"
:label="$ay.t('CopyAttachments')"
ref="copyAttachments"
data-cy="copyAttachments"
:error-messages="form().serverErrors(this, 'copyAttachments')"
@change="fieldValueChanged('copyAttachments')"
></v-checkbox>
</v-col>
<v-col
v-if="
form().showMe(this, 'Tags') &&