Skip to content

Commit 8fe0aa2

Browse files
authored
Merge pull request #1700 from umbraco/bugfix/workspace-entity-action-menu
Fix: umb-workspace-entity-action-menu: only prevent rendering when undefined
2 parents 0c8e53e + 6e8c084 commit 8fe0aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packages/core/workspace/components/workspace-entity-action-menu/workspace-entity-action-menu.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class UmbWorkspaceEntityActionMenuElement extends UmbLitElement {
5252
}
5353

5454
render() {
55-
return this._unique && this._entityType
55+
return this._unique !== undefined && this._entityType
5656
? html`
5757
<uui-button
5858
id="action-button"

0 commit comments

Comments
 (0)