Skip to content

Commit

Permalink
fix for show icon while searching
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Jun 3, 2024
1 parent 687c09b commit eff6cd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class ListModel<T extends BaseAction = Action> extends ActionContainer<T>
if (action.items) {
action.items.forEach(item => {
const a = new Action(item);
a.iconName = action.iconName;
if (!a.iconName) { a.iconName = action.iconName; }
newActions.push(a as IAction as T);
});
}
Expand Down

0 comments on commit eff6cd0

Please sign in to comment.