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
2 changes: 1 addition & 1 deletion ui/desktop/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion ui/desktop/src/components/PopularChatTopics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function PopularChatTopics({ append }: PopularChatTopicsProps) {
};

return (
<div className="absolute bottom-0 left-0 p-6 max-w-md">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@The-Best-Codes thanks for these changes, just a heads up I ended up reverting this, the designers wanted it small and to the left.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem! Sounds good to me 👍

<div className="absolute bottom-0 left-0 p-6 w-full">
<h3 className="text-text-muted text-sm mb-1">Popular chat topics</h3>
<div className="space-y-1">
{POPULAR_TOPICS.map((topic) => (
Expand Down
2 changes: 1 addition & 1 deletion ui/desktop/src/components/cli/CLIHub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const CLIHub: React.FC<CLIHubProps> = ({ chat, setChat, setView }) => {
</div>

{/* CLI Chat View */}
<div className="flex flex-col min-w-0 flex-1 overflow-y-scroll relative pl-6 pr-4 pb-16 pt-2">
<div className="flex flex-col min-w-0 flex-1 overflow-y-auto relative pl-6 pr-4 pb-16 pt-2">
<CLIChatView sessionId={sessionId} />
</div>

Expand Down
2 changes: 1 addition & 1 deletion ui/desktop/src/components/extensions/ExtensionsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function ExtensionsView({

return (
<MainPanelLayout>
<div className="flex flex-col min-w-0 flex-1 overflow-y-scroll relative">
<div className="flex flex-col min-w-0 flex-1 overflow-y-auto relative">
<div className="bg-background-default px-8 pb-4 pt-16">
<div className="flex flex-col animate-in fade-in duration-500">
<div className="flex justify-between items-center mb-1">
Expand Down