parent
e3dcbb78f7
commit
559c8ce7e3
|
@ -11,7 +11,7 @@ export default class DOMManager {
|
|||
static get bdScripts() {return this.getElement("bd-scripts");}
|
||||
static get bdStyles() {return this.getElement("bd-styles");}
|
||||
static get bdThemes() {return this.getElement("bd-themes");}
|
||||
static get bdCustomCSS() {return this.getElement("#customcss");}
|
||||
static get bdCustomCSS() {return this.getElement("style#customcss");}
|
||||
static get bdTooltips() {return this.getElement("bd-tooltips") || this.createElement("bd-tooltips").appendTo(this.bdBody);}
|
||||
static get bdModals() {return this.getElement("bd-modals") || this.createElement("bd-modals").appendTo(this.bdBody);}
|
||||
static get bdToasts() {return this.getElement("bd-toasts") || this.createElement("bd-toasts").appendTo(this.bdBody);}
|
||||
|
|
|
@ -175,7 +175,7 @@ export default new class SettingsRenderer {
|
|||
}
|
||||
|
||||
async patchVersionInformation() {
|
||||
const versionDisplayModule = await WebpackModules.getLazy(Filters.byStrings("RELEASE_CHANNEL", "COPY_VERSION"), {defaultExport: false});
|
||||
const versionDisplayModule = await WebpackModules.getLazy(Filters.byStrings("copyValue", "RELEASE_CHANNEL"), {defaultExport: false});
|
||||
if (!versionDisplayModule?.Z) return;
|
||||
|
||||
Patcher.after("SettingsManager", versionDisplayModule, "Z", (_, __, reactTree) => {
|
||||
|
|
Loading…
Reference in New Issue