This commit is contained in:
tiago.kayaya
2021-07-02 08:58:59 +01:00
2 changed files with 1 additions and 20 deletions
@@ -29,30 +29,12 @@
</div>
<div class="ion-input-class">
<ion-select class="d-block d-md-none" [(ngModel)]="postData.Priority" interface="action-sheet" Cancel-text="Cancelar" required>
<ion-select class="d-block" [(ngModel)]="postData.Priority" interface="action-sheet" Cancel-text="Cancelar" required>
<ion-select-option value="99999861"><b>Normal</b> (4 dias para a execução da tarefa)</ion-select-option>
<ion-select-option value="99999862"><b>Urgente</b> (2 dias para a execução da tarefa)</ion-select-option>
<ion-select-option value="99999863"><b>Muito Urgente</b> (1 dia para a execução da tarefa)</ion-select-option>
<ion-select-option value="99999864"><b>Urgentíssimo</b> (8 horas para a execução da tarefa)</ion-select-option>
</ion-select>
<mat-form-field class="width-100 d-none d-md-block" floatLabel="never" required>
<mat-select matInput [(ngModel)]="postData.Priority" >
<mat-option value="99999861">
Normal
</mat-option>
<mat-option value="99999862">
Urgente
</mat-option>
<mat-option value="99999863">
Muito Urgente
</mat-option>
<mat-option value="99999864">
Urgentíssimo
</mat-option>
</mat-select>
</mat-form-field>
</div>
</div>
</div>
@@ -209,7 +209,6 @@ export class NewEventPage implements OnInit {
})
}
this.taskParticipants = removeDuplicate(this.taskParticipants);
this.taskParticipantsCc = removeDuplicate(this.taskParticipantsCc);