Update slash command menu dimensions in report editor

- Change w-[300px] to min-w-[210px] (fixed width to minimum width)
- Change max-h-[288px] to max-h-[300px] (increase maximum height)
- Affects InlineComboboxContent component in report editor slash command menu

Ticket: BUS-1683
Co-Authored-By: nate@buster.so <nate@buster.so>
This commit is contained in:
Devin AI 2025-09-09 17:26:38 +00:00
parent b096b25a7a
commit 7e14da4676
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ const InlineComboboxContent: typeof ComboboxPopover = ({ className, style, ...pr
<Portal>
<ComboboxPopover
className={cn(
'bg-popover z-500 max-h-[288px] w-[300px] overflow-y-auto rounded border shadow',
'bg-popover z-500 max-h-[300px] min-w-[210px] overflow-y-auto rounded border shadow',
className
)}
{...props}