Skip to content

Commit

Permalink
Merge pull request #40 from harishdeivanayagam/feature/public-apis-docs
Browse files Browse the repository at this point in the history
fix: layout nav text
  • Loading branch information
harishdeivanayagam authored Jan 31, 2025
2 parents 191d10c + 5a62322 commit c2a72af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/console/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function ConsoleLayoutContent({ children }: { children: React.Rea
{sheets.map((sheet) => (
<button
onClick={() => router.push(`/console/sheets/${sheet.id}`)}
className={`py-2 px-2 rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${pathname.includes(sheet.id) ? 'bg-gray-200' : ''}`}
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' : ''}`}
key={sheet.id}
>
<PiTableBold className="text-lg font-bold" />
Expand Down

0 comments on commit c2a72af

Please sign in to comment.