Skip to content

Commit

Permalink
Fix whitespace issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Butterfield committed Jun 20, 2024
1 parent 083396f commit ea15e43
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,34 @@ import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
@customElement('umb-block-workspace-editor')
export class UmbBlockWorkspaceEditorElement extends UmbLitElement {

@property({ type: String, attribute: false })
workspaceAlias?: string;
@property({ type: String, attribute: false })
workspaceAlias?: string;

@property({ type: String, attribute: false })
label?: string;
@property({ type: String, attribute: false })
label?: string;

render() {
return this.workspaceAlias && this.label
? html` <umb-workspace-editor alias=${this.workspaceAlias} headline=${this.label}> </umb-workspace-editor> `
: '';
}
render() {
return this.workspaceAlias && this.label
? html` <umb-workspace-editor alias=${this.workspaceAlias} headline=${this.label}> </umb-workspace-editor> `
: '';
}

static styles = [
UmbTextStyles,
css`
static styles = [
UmbTextStyles,
css`
:host {
display: block;
width: 100%;
height: 100%;
}
`,
];
];
}

export default UmbBlockWorkspaceEditorElement;

declare global {
interface HTMLElementTagNameMap {
'umb-block-workspace-editor': UmbBlockWorkspaceEditorElement;
}
interface HTMLElementTagNameMap {
'umb-block-workspace-editor': UmbBlockWorkspaceEditorElement;
}
}

0 comments on commit ea15e43

Please sign in to comment.