disallow clearing tag color

This commit is contained in:
jonaswinkler 2020-12-21 18:23:06 +01:00
parent 5892941d8a
commit c527b274b6

View File

@ -11,7 +11,7 @@
<div class="form-group paperless-input-select"> <div class="form-group paperless-input-select">
<label for="colour">Colour</label> <label for="colour">Colour</label>
<ng-select name="colour" formControlName="colour" [items]="getColours()" bindValue="id" bindLabel="name"> <ng-select name="colour" formControlName="colour" [items]="getColours()" bindValue="id" bindLabel="name" [clearable]="false">
<ng-template ng-option-tmp ng-label-tmp let-item="item"> <ng-template ng-option-tmp ng-label-tmp let-item="item">
<span class="badge" [style.background]="item.value" [style.color]="item.textColor">{{item.name}}</span> <span class="badge" [style.background]="item.value" [style.color]="item.textColor">{{item.name}}</span>
</ng-template> </ng-template>