Merge branch 'staging' into devin/BUS-1681-1757438837

This commit is contained in:
Nate Kelley 2025-09-09 11:39:29 -06:00
commit e14bf73968
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 2 additions and 4 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}

View File

@ -1,8 +1,6 @@
import type { TComboboxInputElement } from 'platejs';
import type { PlateElementProps } from 'platejs/react';
import { PlateElement } from 'platejs/react';
import { cn } from '@/lib/utils';
import { getSlashGroups } from '../config/addMenuItems';
import {
@ -49,7 +47,7 @@ export function SlashInputElement(props: PlateElementProps<TComboboxInputElement
group={group}
keywords={keywords ? [...keywords] : undefined}
>
<div className="text-muted-foreground mr-2">{icon}</div>
<div className="text-icon-color mr-2">{icon}</div>
{label ?? value}
</InlineComboboxItem>
))}