[ACA-3619] - change assignment placeholder (#6891)

* [ACA-3619] - change assignment placeholder

* RP changs

Co-authored-by: Silviu Constantin Popa <silviucpopa@L3700101120.ness.com>
This commit is contained in:
Silviu Popa
2021-04-07 15:11:20 +03:00
committed by GitHub
parent c60d456332
commit c120526a29
2 changed files with 2 additions and 2 deletions

View File

@@ -379,7 +379,7 @@
"ADF_CLOUD_TASK_ASSIGNEMNT_FILTER": {
"ASSIGNED_TO_ME": "Assigned to me",
"UNASSIGNED": "Unassigned",
"LIST_OF_CANDIDATE_USERS": "List of candidate users",
"LIST_OF_CANDIDATE_GROUPS": "List of candidate groups",
"ASSIGNEE": "Assignee",
"ASSIGNMENT_TYPE": "Assignment type"
}

View File

@@ -6,7 +6,7 @@
(ngModelChange)="onAssignmentTypeChange(assignmentType)">
<mat-option [value]="assignmentTypeList.currentUser">{{ 'ADF_CLOUD_TASK_ASSIGNEMNT_FILTER.ASSIGNED_TO_ME' | translate }} </mat-option>
<mat-option [value]="assignmentTypeList.unassigned">{{ 'ADF_CLOUD_TASK_ASSIGNEMNT_FILTER.UNASSIGNED' | translate }} </mat-option>
<mat-option [value]="assignmentTypeList.candidateGroups">{{ 'ADF_CLOUD_TASK_ASSIGNEMNT_FILTER.LIST_OF_CANDIDATE_USERS' | translate }} </mat-option>
<mat-option [value]="assignmentTypeList.candidateGroups">{{ 'ADF_CLOUD_TASK_ASSIGNEMNT_FILTER.LIST_OF_CANDIDATE_GROUPS' | translate }} </mat-option>
</mat-select>
</mat-form-field>