All Posts
February 26, 20260.1.46Jugg.ai

v0.1.46 — feat: make products table rows fully clickable

Release v0.1.46: Fully Clickable Product Table Rows

What changed

  • Entire product table rows are now clickable, navigating directly to the product detail page
  • Added hover highlight (hover:bg-muted/50) for visual feedback
  • Product name links preserved for right-click and open-in-new-tab functionality
  • Implemented via new ProductTableRow client component; server architecture unchanged

Why it matters

Faster navigation through your products dashboard. Any part of the row takes you where you need to go, while preserving standard link behaviors for power users.

Technical notes

New ProductTableRow client component ("use client") handles row interactions. Parent ProductsPage remains a server component, keeping data fetching efficient.

Release Notes

Successfully merged PR #463 and published release v0.1.46.

PR merged: #463 — "feat: make products table rows fully clickable" (squash merge, SHA: fbc67a7)

Release: v0.1.46 — https://github.com/Jugg-ai/Jugg-ai.jugg-ai/releases/tag/v0.1.46

What shipped:

  • New ProductTableRow client component that makes the entire row in the Products dashboard table clickable, navigating to the product detail page
  • Adds cursor-pointer + hover:bg-muted/50 hover highlight for visual feedback, consistent with the existing pipeline table UX
  • Preserves the <Link> on the product name for right-click / open-in-new-tab behavior
  • Products page remains a server component; only the interactive row is delegated to the thin client component
  • 2 files changed: +68 / -31 lines