MOBILE-3833 assign: Fix duplicated id
parent
befee634ff
commit
3d2d99fb7d
|
@ -26,13 +26,11 @@
|
||||||
|
|
||||||
<ion-list>
|
<ion-list>
|
||||||
<ion-item class="ion-text-wrap" *ngIf="(groupInfo.separateGroups || groupInfo.visibleGroups)">
|
<ion-item class="ion-text-wrap" *ngIf="(groupInfo.separateGroups || groupInfo.visibleGroups)">
|
||||||
<ion-label id="addon-assign-groupslabel" *ngIf="groupInfo.separateGroups">
|
<ion-label id="addon-assign-groupslabel-list">
|
||||||
{{ 'core.groupsseparate' | translate }}
|
<ng-container *ngIf="groupInfo.separateGroups">{{'core.groupsseparate' | translate }}</ng-container>
|
||||||
|
<ng-container *ngIf="groupInfo.visibleGroups">{{'core.groupsvisible' | translate }}</ng-container>
|
||||||
</ion-label>
|
</ion-label>
|
||||||
<ion-label id="addon-assign-groupslabel" *ngIf="groupInfo.visibleGroups">
|
<ion-select [(ngModel)]="groupId" (ionChange)="reloadSubmissions()" aria-labelledby="addon-assign-groupslabel-list"
|
||||||
{{ 'core.groupsvisible' | translate }}
|
|
||||||
</ion-label>
|
|
||||||
<ion-select [(ngModel)]="groupId" (ionChange)="reloadSubmissions()" aria-labelledby="addon-assign-groupslabel"
|
|
||||||
interface="action-sheet" slot="end" [interfaceOptions]="{header: 'core.group' | translate}">
|
interface="action-sheet" slot="end" [interfaceOptions]="{header: 'core.group' | translate}">
|
||||||
<ion-select-option *ngFor="let groupOpt of groupInfo.groups" [value]="groupOpt.id">
|
<ion-select-option *ngFor="let groupOpt of groupInfo.groups" [value]="groupOpt.id">
|
||||||
{{groupOpt.name}}
|
{{groupOpt.name}}
|
||||||
|
|
Loading…
Reference in New Issue