Skip to content

Commit 7e829e9

Browse files
committed
fix linting
1 parent ffb52c7 commit 7e829e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/packages/relations/relation-types/workspace/relation-type/relation-type-workspace-editor.element.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { UMB_RELATIONS_ROOT_WORKSPACE_PATH } from '../../../workspace/paths.js';
12
import { UMB_RELATION_TYPE_WORKSPACE_CONTEXT } from './relation-type-workspace.context-token.js';
23
import { observeMultiple } from '@umbraco-cms/backoffice/observable-api';
34
import { css, html, customElement, state } from '@umbraco-cms/backoffice/external/lit';
45
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
5-
import { UMB_RELATIONS_ROOT_WORKSPACE_PATH } from 'src/packages/relations/workspace/paths.js';
66

77
/**
88
* @element umb-relation-type-workspace-editor
@@ -39,7 +39,7 @@ export class UmbRelationTypeWorkspaceEditorElement extends UmbLitElement {
3939
return html`
4040
<umb-workspace-editor alias="Umb.Workspace.RelationType" back-path="${UMB_RELATIONS_ROOT_WORKSPACE_PATH}">
4141
<div id="header" slot="header">
42-
<uui-input id="name" .value=${this._name} readonly>
42+
<uui-input id="name" .value=${this._name ?? ''} readonly>
4343
<div id="alias" slot="append">${this._alias}</div>
4444
</uui-input>
4545
</div>

0 commit comments

Comments
 (0)