refactor(client): remove redundant variable

This commit is contained in:
Elian Doran 2025-01-18 01:24:21 +02:00
parent 0776f17ebb
commit ac30e00c02
No known key found for this signature in database

View File

@ -92,7 +92,6 @@ export default class NoteIconWidget extends NoteContextAwareWidget {
private $iconList!: JQuery<HTMLElement>;
private $iconCategory!: JQuery<HTMLElement>;
private $iconSearch!: JQuery<HTMLElement>;
private $notePathList!: JQuery<HTMLElement>;
private iconToCountCache!: Promise<IconToCountCache | null> | null;
doRender() {
@ -114,7 +113,6 @@ export default class NoteIconWidget extends NoteContextAwareWidget {
this.$iconSearch = this.$widget.find("input[name='icon-search']");
this.$iconSearch.on("input", () => this.renderDropdown());
this.$notePathList = this.$widget.find(".note-path-list");
this.$widget.on("show.bs.dropdown", async () => {
const { categories } = (await import("./icon_list.js")).default;