remove unused method

This commit is contained in:
Niels Lyngsø
2023-08-03 11:03:53 +02:00
parent 49f211e859
commit 6b22b78bee

View File

@@ -36,10 +36,10 @@ export class UmbWorkspaceEditorElement extends UmbLitElement {
@property()
public headline = '';
@property({type: Boolean})
@property({ type: Boolean })
public hideNavigation = false;
@property({type: Boolean})
@property({ type: Boolean })
public enforceNoFooter = false;
private _alias = '';
@@ -89,11 +89,6 @@ export class UmbWorkspaceEditorElement extends UmbLitElement {
);
}
// TODO: Move into a helper function:
private componentHasManifest(component: HTMLElement): component is HTMLElement & { manifest: unknown } {
return component ? 'manifest' in component : false;
}
private _createRoutes() {
this._routes = [];