Skip to content

Commit

Permalink
ACS-5680 fix library properties to show labels in edit mode (#3393)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-jaskowski committed Aug 21, 2023
1 parent f8a30f3 commit 9d1a6ae
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

<mat-card-content *ngIf="edit">
<form [formGroup]="form" autocomplete="off">
<mat-form-field>
<mat-form-field floatLabel="auto">
<input
matInput
cdkFocusInitial
Expand All @@ -96,19 +96,19 @@
</mat-error>
</mat-form-field>

<mat-form-field>
<mat-form-field floatLabel="auto">
<input matInput placeholder="{{ 'LIBRARY.DIALOG.FORM.SITE_ID' | translate }}" formControlName="id" />
</mat-form-field>

<mat-form-field>
<mat-form-field floatLabel="auto">
<mat-select placeholder="{{ 'LIBRARY.DIALOG.FORM.VISIBILITY' | translate }}" formControlName="visibility">
<mat-option [value]="type.value" *ngFor="let type of libraryType">
{{ type.label | translate }}
</mat-option>
</mat-select>
</mat-form-field>

<mat-form-field>
<mat-form-field floatLabel="auto">
<textarea
matInput
placeholder="{{ 'LIBRARY.DIALOG.FORM.DESCRIPTION' | translate }}"
Expand Down

0 comments on commit 9d1a6ae

Please sign in to comment.