Skip to content
Merged
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
4 changes: 2 additions & 2 deletions ui/desktop/src/components/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ export default function ChatInput({
</div>

{/* Inline action buttons on the right */}
<div className="flex items-center gap-1 px-2 relative">
<div className="flex items-center gap-1 px-2 relative self-center">
{/* Microphone button - show only if dictation is enabled */}
{dictationSettings?.enabled && (
<>
Expand Down Expand Up @@ -1472,7 +1472,7 @@ export default function ChatInput({

{/* Combined files and images preview */}
{(pastedImages.length > 0 || allDroppedFiles.length > 0) && (
<div className="flex flex-wrap gap-2 p-2 border-t border-borderSubtle">
<div className="flex flex-wrap gap-2 p-4 mt-2 border-t border-borderSubtle">
{/* Render pasted images first */}
{pastedImages.map((img) => (
<div key={img.id} className="relative group w-20 h-20">
Expand Down
Loading