Add Border style placeholder in border style selections

This commit is contained in:
Rajnikant Lodhi 2022-08-12 14:51:01 +05:30
parent 8e197a8831
commit 5da993e2f5

View File

@ -26,7 +26,7 @@
<input matInput formControlName="borderWidth" placeholder="Border width" type="number" />
</mat-form-field>
<mat-form-field class="form-field">
<mat-select placeholder="Type" [ngModelOptions]="{ standalone: true }" [(ngModel)]="element.stroke_dasharray">
<mat-select placeholder="Border style" [ngModelOptions]="{ standalone: true }" [(ngModel)]="element.stroke_dasharray">
<mat-option *ngFor="let type of borderTypes" [value]="type.value"> {{ type.name }} </mat-option>
</mat-select>
</mat-form-field>