Merge pull request #1700 from umbraco/bugfix/workspace-entity-action-menu
Fix: umb-workspace-entity-action-menu: only prevent rendering when undefined
This commit is contained in:
@@ -52,7 +52,7 @@ export class UmbWorkspaceEntityActionMenuElement extends UmbLitElement {
|
||||
}
|
||||
|
||||
render() {
|
||||
return this._unique && this._entityType
|
||||
return this._unique !== undefined && this._entityType
|
||||
? html`
|
||||
<uui-button
|
||||
id="action-button"
|
||||
|
||||
Reference in New Issue
Block a user