Skip to content

Commit c342c80

Browse files
committed
fix: fix
1 parent 09bb851 commit c342c80

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

projects/ui/src/lib/components/po-listbox/po-listbox.component.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
[p-item]="item"
149149
[p-separator]="item.separator || separator"
150150
[p-icon]="item.icon"
151-
[p-icon-arrow-right]="'po-icon-arrow-right'"
151+
[p-icon-arrow-right]="'ICON_ARROW_RIGHT'"
152152
[p-selected]="isSelectedItem(item) || item.selected"
153153
>
154154
</po-item-list>
@@ -179,12 +179,16 @@
179179
(click)="goBack($event)"
180180
(keydown)="onKeydownGoBack($event, currentGroup)"
181181
>
182-
<po-icon class="po-field-icon" [p-icon]="'po-icon-arrow-left'"></po-icon>
182+
<po-icon class="po-field-icon" [p-icon]="'ICON_ARROW_LEFT'"></po-icon>
183183
<po-tag [p-value]="currentGroup.label"></po-tag>
184184
</li>
185185

186186
@if (currentGroup.$subItemTemplate) {
187-
<div (click)="$event.stopPropagation()" (keydown)="onKeydownTemplate($event)">
187+
<div
188+
(click)="$event.stopPropagation()"
189+
(keydown)="onKeydownTemplate($event)"
190+
(keydown.space)="$event.stopPropagation()"
191+
>
188192
<ng-container
189193
*ngTemplateOutlet="currentGroup.$subItemTemplate; context: { $implicit: currentGroup }"
190194
></ng-container>
@@ -201,7 +205,7 @@
201205
[p-label]="subItem.label"
202206
[p-item]="subItem"
203207
[p-separator]="subItem.separator || separator"
204-
[p-icon]="'po-icon-arrow-right'"
208+
[p-icon]="'ICON_ARROW_RIGHT'"
205209
[p-icon-position]="'right'"
206210
>
207211
</po-item-list>

0 commit comments

Comments
 (0)