fix(global_menu): fix non-existing option (according to TS)

This commit is contained in:
Panagiotis Papadopoulos 2025-02-12 08:55:54 +01:00
parent bc28f323b8
commit ad8adeda0a

View File

@ -300,7 +300,9 @@ export default class GlobalMenuWidget extends BasicWidget {
}
this.dropdown = Dropdown.getOrCreateInstance(this.$widget.find("[data-bs-toggle='dropdown']")[0], {
alignment: "bottom"
popperConfig: {
placement: "bottom"
}
});
this.$widget.find(".show-about-dialog-button").on("click", () => this.triggerCommand("openAboutDialog"));