Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ export const AddApiKeyModal = ({
</div>
))}
{isFormbricksCloud && (
<Alert variant="info" size="small">
<Alert variant="info">
<AlertDescription>
{t("workspace.api_keys.organization_access_cloud_note")}
</AlertDescription>
Expand Down
10 changes: 9 additions & 1 deletion apps/web/modules/ui/components/input-combo-box/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,15 @@ export const InputCombobox: React.FC<InputComboboxProps> = ({
}}
/>
) : (
<ChevronDownIcon className="size-5 shrink-0 text-slate-300 group-hover/icon:text-slate-400" />
<ChevronDownIcon
className={cn(
"size-5 shrink-0 text-slate-300 group-hover/icon:text-slate-400",
// Pin the chevron to the right even when there's no value/placeholder to render a
// leading flex-1 element — otherwise it collapses to the left and looks broken.
// Skip in the centered icon-only (withInput) variant so it stays centered.
!(withInput && inputType !== "dropdown") && "ml-auto"
)}
/>
)}
</div>
</DropdownMenuTrigger>
Expand Down
Loading