We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e5fed commit 9c5859eCopy full SHA for 9c5859e
packages/openscd/src/addons/Layout.ts
@@ -59,9 +59,13 @@ export class OscdLayout extends LitElement {
59
60
render(): TemplateResult {
61
return html`
62
- <slot></slot>
63
- ${this.renderHeader()} ${this.renderAside()} ${this.renderContent()}
64
- ${this.renderLanding()} ${this.renderPlugging()}
+ <div
+ @open-plugin-download=${() => this.pluginDownloadUI.show()}
+ >
65
+ <slot></slot>
66
+ ${this.renderHeader()} ${this.renderAside()} ${this.renderContent()}
67
+ ${this.renderLanding()} ${this.renderPlugging()}
68
+ </div>
69
`;
70
}
71
0 commit comments