Skip to content

Commit 2f8fedf

Browse files
committed
feat: call focusSearch method after dialog close and update icon for UI5 IconTabFilter
1 parent 01ef631 commit 2f8fedf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

webapp/controller/Main.controller.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,13 +371,15 @@ export default class Main extends BaseController {
371371
);
372372
dialog.close();
373373
dialog.destroy();
374+
this.focusSearch();
374375
},
375376
}),
376377
endButton: new Button({
377378
text: "Close",
378379
press: () => {
379380
dialog.close();
380381
dialog.destroy();
382+
this.focusSearch();
381383
},
382384
}),
383385
draggable: true,

webapp/view/Main.view.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<IconTabFilter
7171
key="UI5"
7272
text="{= 'UI5/FIORI (' + ${local>/ui5Count} + ')' }"
73-
icon="sap-icon://sap-ui5"
73+
icon="sap-icon://popup-window"
7474
/>
7575
<IconTabFilter
7676
key="ABAP"

0 commit comments

Comments
 (0)