Skip to content

Commit

Permalink
fix(kit): don't hide input if search isn't empty (#6225)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Dec 12, 2023
1 parent d43a02e commit ea1c3a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/kit/components/input-tag/input-tag.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
>
<div
class="t-tags"
[class.t-tags_empty]="(!focused || inputHidden) && !value?.length"
[class.t-tags_empty]="(!focused || inputHidden) && !value?.length && !search?.trim()?.length"
>
<ng-container *ngIf="labelOutside; else text">
<tui-tag
Expand Down

0 comments on commit ea1c3a0

Please sign in to comment.