fix: Fixed compact mode not working at startup and finished workspace creation form, b=no-bug, c=compact-mode, workspaces

This commit is contained in:
mr. m
2025-06-11 03:00:14 +02:00
parent 376c64c892
commit b932558ad6
4 changed files with 77 additions and 27 deletions

View File

@@ -76,14 +76,14 @@
}
openThemePicker(event) {
const position = event.explicitOriginalTarget?.classList?.contains(
const fromForm = event.explicitOriginalTarget?.classList?.contains(
'zen-workspace-creation-edit-theme-button'
)
? 'end_before'
: 'topright topleft';
);
const position = fromForm ? 'bottomleft bottomright' : 'topright topleft';
PanelMultiView.openPopup(this.panel, this.toolbox, {
position,
triggerEvent: event,
y: fromForm ? -160 : 0,
});
}