Removed the unused #modal property from the JavaScript OriginalEntrySelector class.

This commit is contained in:
依瑪貓 2023-03-19 07:27:25 +08:00
parent 884e37fe1b
commit b9b197ea27

View File

@ -34,12 +34,6 @@ class OriginalEntrySelector {
*/
#prefix = "accounting-original-entry-selector";
/**
* The modal of the original entry editor
* @type {HTMLDivElement}
*/
#modal;
/**
* The query input
* @type {HTMLInputElement}
@ -92,7 +86,6 @@ class OriginalEntrySelector {
*
*/
constructor() {
this.#modal = document.getElementById(this.#prefix + "-modal");
this.#query = document.getElementById(this.#prefix + "-query");
this.#queryNoResult = document.getElementById(this.#prefix + "-option-no-result");
this.#optionList = document.getElementById(this.#prefix + "-option-list");