Skip to content

Commit 42a18b3

Browse files
committed
feat: enhance visibility settings for icon tab bar and update dialog instructions
1 parent e58dd97 commit 42a18b3

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

webapp/controller/Main.controller.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,10 @@ export default class Main extends BaseController {
490490
) as string[];
491491
const iconTabBar = this.byId("iconTabBar") as IconTabBar;
492492
iconTabBar.getItems().forEach((item: IconTab) => {
493+
if ((item as IconTabFilter).getKey() === "ALL") {
494+
(item as IconTabFilter).setVisible(true);
495+
return;
496+
}
493497
(item as IconTabFilter).setVisible(
494498
visibleGroups.includes((item as IconTabFilter).getKey())
495499
);

webapp/util/DialogManager.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ export default class DialogManager extends UI5Element {
2626
<p>Here are some key features:</p>
2727
<ul>
2828
<li><strong>Search:</strong> Use the search bar to find T-Codes by code, title, or description.</li>
29-
<li><strong>Copy:</strong> Click on a T-Code to copy it to your clipboard. You can also choose to copy with a /n prefix.</li>
29+
<li><strong>Copy:</strong> Click on a T-Code to copy it to your clipboard. You can also choose to copy with a /n prefix which can be configured in settings.</li>
3030
<li><strong>Favorites:</strong> Mark T-Codes as favorites for quick access.</li>
31-
<li><strong>Custom T-Codes:</strong> Add, edit, and delete your own custom T-Codes.</li>
31+
<li><strong>Custom T-Codes:</strong> Add, edit, and delete your own custom T-Codes in the CUSTOM group. Right click a cell to edit existing ones.</li>
3232
<li><strong>Settings:</strong> Customize your experience with options like theme selection and search reset behavior.</li>
3333
</ul>
34-
<p>To edit a T-Code, right-click on any cell item. If you have any feedback or feature requests, feel free to open an <a href="https://github.com/marioke/de.kernich.tcode/issues" target="_blank">issue on GitHub</a> 🚀</p>
3534
<p>Enjoy your development journey! 🌟</p>
3635
`,
3736
}).addStyleClass("sapUiSmallMarginBegin sapUiSmallMarginEnd"),

0 commit comments

Comments
 (0)