Skip to content
Snippets Groups Projects
Commit 334aea25 authored by rhenck's avatar rhenck
Browse files

[editor] Change font size property field to number instead of text

parent c360618a
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ import { UIElement } from '../../../../../../common/models/uI-element';
<mat-form-field *ngIf="combinedProperties.fontSize != null"
appearance="fill" class="mdInput textsingleline">
<mat-label>Schriftgröße</mat-label>
<input matInput type="text" [value]="combinedProperties.fontSize"
<input matInput type="number" [value]="combinedProperties.fontSize"
(input)="updateModel.emit({ property: 'fontSize', value: $any($event.target).value })">
</mat-form-field>
<mat-form-field *ngIf="combinedProperties.lineHeight != null"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment