Skip to content

Commit

Permalink
fix(legacy): InputNumber fix hydration (#9434)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirpotekhin authored Oct 17, 2024
1 parent 2a44ed7 commit e0aac04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@
pointer-events: none;
padding-inline-end: 0;
}

&_template_hidden {
display: none;
}
}

.t-text-template {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
(ngModelChange)="onModelChange($event)"
/>
<div
*ngIf="inputHidden"
automation-id="tui-primitive-textfield__value"
class="t-input t-input_template"
[class.t-input_template_hidden]="!inputHidden"
>
<ng-content select="tuiContent" />
</div>
Expand Down

0 comments on commit e0aac04

Please sign in to comment.