parent
ea730e6947
commit
689fa18b64
|
|
@ -1,5 +1,5 @@
|
|||
import { config } from "../../../package.json";
|
||||
const ItemDetails = customElements.get("item-details")! as any;
|
||||
const ItemDetails = document.createElement("item-details").constructor! as any;
|
||||
|
||||
export class DetailsPane extends ItemDetails {
|
||||
content = MozXULElement.parseXULToFragment(`
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
// @ts-nocheck
|
||||
import { config } from "../../../package.json";
|
||||
|
||||
const RelatedBox = customElements.get("related-box")! as typeof XULElementBase;
|
||||
const RelatedBox = document.createElement("related-box")
|
||||
.constructor! as typeof XULElementBase;
|
||||
|
||||
const _require = window.require;
|
||||
const { getCSSItemTypeIcon } = _require("components/icons");
|
||||
|
|
|
|||
Loading…
Reference in New Issue