refactor(client): remove unnecessary return type

This commit is contained in:
Elian Doran 2025-02-25 17:20:13 +02:00
parent 1be92baf4a
commit 175852f6cb
No known key found for this signature in database

View File

@ -37,7 +37,7 @@ export default class RightDropdownButtonWidget extends BasicWidget {
};
}
doRender(): void {
doRender() {
this.$widget = $(TPL);
this.$dropdownMenu = this.$widget.find(".dropdown-menu");
this.dropdown = Dropdown.getOrCreateInstance(this.$widget.find("[data-bs-toggle='dropdown']")[0]);