diff --git a/src/Umbraco.Web.UI.Client/src/packages/users/users/workspace/user-workspace-editor.element.ts b/src/Umbraco.Web.UI.Client/src/packages/users/users/workspace/user-workspace-editor.element.ts index f832bb498e..ed3b4afb6b 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/users/users/workspace/user-workspace-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/users/users/workspace/user-workspace-editor.element.ts @@ -304,24 +304,26 @@ export class UmbUserWorkspaceEditorElement extends UmbLitElement { const buttons: TemplateResult[] = []; - if (this._user.state === UserStateModel.DISABLED) { - buttons.push(html` - - `); - } + if (this._user.id !== this._currentUser?.id) { + if (this._user.state === UserStateModel.DISABLED) { + buttons.push(html` + + `); + } - if (this._user.state === UserStateModel.ACTIVE || this._user.state === UserStateModel.INACTIVE) { - buttons.push(html` - - `); + if (this._user.state === UserStateModel.ACTIVE || this._user.state === UserStateModel.INACTIVE) { + buttons.push(html` + + `); + } } if (this._currentUser?.id !== this._user?.id) {