Skip to content

Commit b1bf8af

Browse files
Merge pull request #41 from harishdeivanayagam/feature/public-apis-docs
Feature/public apis docs
2 parents c2a72af + 1e3fd32 commit b1bf8af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/console/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function ConsoleLayoutContent({ children }: { children: React.Rea
7979
{sheets.map((sheet) => (
8080
<button
8181
onClick={() => router.push(`/console/sheets/${sheet.id}`)}
82-
className={`py-2 px-2 max-w-[200px] overflow-hidden text-ellipsis rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${pathname.includes(sheet.id) ? 'bg-gray-200' : ''}`}
82+
className={`py-2 px-2 overflow-hidden text-ellipsis whitespace-nowrap rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${pathname.includes(sheet.id) ? 'bg-gray-200' : ''}`}
8383
key={sheet.id}
8484
>
8585
<PiTableBold className="text-lg font-bold" />

src/app/console/settingsDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export default function SettingsPage() {
186186
</CardHeader>
187187
<CardContent>
188188
<Label>API Key</Label>
189-
<div className="space-y-2">
189+
<div className="flex items-center gap-2">
190190
<Input value={apiKey} disabled />
191191
<div className="flex gap-2">
192192
<Button onClick={handleCopyApiKey} size="icon"><PiClipboard /></Button>

0 commit comments

Comments
 (0)