From e82012ff1c5bab351afecea714ca1f3aa4fb336b Mon Sep 17 00:00:00 2001 From: Ashvin Jangid <142579833+ashvwinn@users.noreply.github.com> Date: Wed, 27 May 2026 01:22:37 +0530 Subject: [PATCH] gh-13879: fix sidebar UI breaking on cancelling space creation (gh-13880) --- src/zen/spaces/ZenSpaceCreation.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zen/spaces/ZenSpaceCreation.mjs b/src/zen/spaces/ZenSpaceCreation.mjs index 5792d2120..330ca9e02 100644 --- a/src/zen/spaces/ZenSpaceCreation.mjs +++ b/src/zen/spaces/ZenSpaceCreation.mjs @@ -261,6 +261,7 @@ class nsZenWorkspaceCreation extends MozXULElement { } async onCancelButtonCommand() { + document.documentElement.removeAttribute("zen-creating-workspace"); await gZenWorkspaces.changeWorkspaceWithID(this.previousWorkspaceId); }