Fixed tags for finalized, locked and published datasets
This commit is contained in:
parent
1f6b98ad60
commit
3eb323ba4b
|
@ -153,9 +153,9 @@
|
||||||
<mat-chip *ngFor="let tag of formGroup.get('tags').value"
|
<mat-chip *ngFor="let tag of formGroup.get('tags').value"
|
||||||
[removable]="true" (removed)="removeTag(tag)">
|
[removable]="true" (removed)="removeTag(tag)">
|
||||||
{{tag.name}}
|
{{tag.name}}
|
||||||
<mat-icon matChipRemove *ngIf="true">cancel</mat-icon>
|
<mat-icon matChipRemove *ngIf="!viewOnly">cancel</mat-icon>
|
||||||
</mat-chip>
|
</mat-chip>
|
||||||
<input matInput placeholder="{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}"
|
<input [disabled]="viewOnly" matInput placeholder="{{'DATASET-EDITOR.FIELDS.TAGS' | translate}}"
|
||||||
[matChipInputFor]="chipList"
|
[matChipInputFor]="chipList"
|
||||||
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
|
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
|
||||||
[matChipInputAddOnBlur]="true"
|
[matChipInputAddOnBlur]="true"
|
||||||
|
|
Loading…
Reference in New Issue