Skip to content

Commit

Permalink
chore(ontology): disable language selector in edit mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann committed Feb 16, 2021
1 parent 7f64937 commit 5adbc10
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@
<!-- default language selector -->
<mat-form-field class="properties-language">
<mat-label>Default language for property label</mat-label>
<mat-select [formControl]="resourceClassForm.controls['language']" [value]="resourceClassForm.value['language']">
<mat-select [formControl]="resourceClassForm.controls['language']" [value]="resourceClassForm.value['language']" [disabled]="edit">
<mat-option *ngFor="let option of languages" [value]="option.language">
{{ option.value }}
</mat-option>
Expand Down

0 comments on commit 5adbc10

Please sign in to comment.