1
0
Fork 0

Differentiate menu open from right-click vs actions bar

Kinda hacky for now
This commit is contained in:
Lim Chee Aun 2024-01-14 21:34:21 +08:00
parent 1017d1d270
commit b8484eff79

View file

@ -1322,7 +1322,9 @@ function Status({
)}
{showActionsBar && size !== 'l' && !previewMode && !readOnly && (
<div
class={`status-actions ${isContextMenuOpen ? 'open' : ''}`}
class={`status-actions ${
isContextMenuOpen === 'actions-bar' ? 'open' : ''
}`}
ref={actionsRef}
>
<StatusButton
@ -1369,7 +1371,7 @@ function Status({
direction: 'bottom',
gap: 4,
});
setIsContextMenuOpen(true);
setIsContextMenuOpen('actions-bar');
}}
>
<Icon icon="more2" size="m" alt="More" />