Skip to content

Commit

Permalink
#7289 fix angular markup
Browse files Browse the repository at this point in the history
Fixes #7289
  • Loading branch information
novikov82 committed Nov 28, 2023
1 parent d5a3bee commit 6d8d1d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img *ngIf="!!model.backgroundImage" [src]="model.backgroundImage" [style.width]="model.renderedCanvasWidth" [class]="model.cssClasses.backgroundImage">
<canvas tabindex="0" [class]="model.cssClasses.canvas" (blur)="model.onBlur()"></canvas>
</div>
<div [class]="model.cssClasses.controls" [visible]="model.canShowClearButton">
<div [class]="model.cssClasses.controls" *ngIf="model.canShowClearButton">
<button
type="button"
[class]="model.cssClasses.clearButton"
Expand Down

0 comments on commit 6d8d1d8

Please sign in to comment.