Skip to content
Snippets Groups Projects
Commit 9e4f0e46 authored by rhenck's avatar rhenck
Browse files

[editor] Fix radius property input

#536
parent a6b34f75
No related branches found
No related tags found
No related merge requests found
Pipeline #50339 passed
......@@ -123,7 +123,7 @@ import { Stylings } from 'common/models/elements/property-group-interfaces';
<mat-form-field *ngIf="styles.borderRadius !== undefined" appearance="fill">
<mat-label>{{'propertiesPanel.borderRadius' | translate }}</mat-label>
<input matInput type="number" [ngModel]="styles.borderRadius"
(ngModelChange)="unitService.updateSelectedElementsStyleProperty('borderRadius', $any($event.target).value)"
(ngModelChange)="unitService.updateSelectedElementsStyleProperty('borderRadius', $event)"
(change)="styles.borderRadius = styles.borderRadius ? styles.borderRadius : 0">
</mat-form-field>
......
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