forked from bcgov/common-hosted-form-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -569,65 +569,65 @@ export default { | |
v-if="!disableRole('form_designer', item, form.userType)" | ||
key="form_designer" | ||
v-model="item.form_designer" | ||
data-test="FormDesignerRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="FormDesignerRoleCheckbox" | ||
Check warning on line 575 in app/frontend/src/components/forms/manage/TeamManagement.vue GitHub Actions / Unit Tests (Frontend) (18)
|
||
></v-checkbox-btn> | ||
</template> | ||
<template #item.owner="{ item }"> | ||
<v-checkbox-btn | ||
v-if="!disableRole('owner', item, form.userType)" | ||
key="owner" | ||
v-model="item.owner" | ||
data-test="OwnerRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="OwnerRoleCheckbox" | ||
Check warning on line 586 in app/frontend/src/components/forms/manage/TeamManagement.vue GitHub Actions / Unit Tests (Frontend) (18)
|
||
></v-checkbox-btn> | ||
</template> | ||
<template #item.submission_approver="{ item }"> | ||
<v-checkbox-btn | ||
v-if="!disableRole('submission_approver', item, form.userType)" | ||
key="submission_approver" | ||
v-model="item.submission_approver" | ||
data-test="ApproverRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="ApproverRoleCheckbox" | ||
Check warning on line 597 in app/frontend/src/components/forms/manage/TeamManagement.vue GitHub Actions / Unit Tests (Frontend) (18)
|
||
></v-checkbox-btn> | ||
</template> | ||
<template #item.submission_reviewer="{ item }"> | ||
<v-checkbox-btn | ||
v-if="!disableRole('submission_reviewer', item, form.userType)" | ||
key="submission_reviewer" | ||
v-model="item.submission_reviewer" | ||
data-test="ReviewerRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="ReviewerRoleCheckbox" | ||
Check warning on line 608 in app/frontend/src/components/forms/manage/TeamManagement.vue GitHub Actions / Unit Tests (Frontend) (18)
|
||
></v-checkbox-btn> | ||
</template> | ||
<template #item.form_submitter="{ item }"> | ||
<v-checkbox-btn | ||
v-if="!disableRole('form_submitter', item, form.userType)" | ||
key="form_submitter" | ||
v-model="item.form_submitter" | ||
data-test="SubmitterRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="SubmitterRoleCheckbox" | ||
Check warning on line 619 in app/frontend/src/components/forms/manage/TeamManagement.vue GitHub Actions / Unit Tests (Frontend) (18)
|
||
></v-checkbox-btn> | ||
</template> | ||
<template #item.team_manager="{ item }"> | ||
<v-checkbox-btn | ||
v-if="!disableRole('team_manager', item, form.userType)" | ||
key="team_manager" | ||
v-model="item.team_manager" | ||
data-test="TeamManagerRoleCheckbox" | ||
v-ripple | ||
:disabled="updating" | ||
@update:modelValue="toggleRole(item)" | ||
data-test="TeamManagerRoleCheckbox" | ||
></v-checkbox-btn> | ||
</template> | ||
<template #item.actions="{ item }"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters