From cdab44c757e45ed90c895c9952bad504d603f395 Mon Sep 17 00:00:00 2001 From: Kelly Date: Thu, 11 Dec 2025 08:09:06 -0700 Subject: [PATCH] fix(ui): Show git hash instead of version number in sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- cannaiq/src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cannaiq/src/components/Layout.tsx b/cannaiq/src/components/Layout.tsx index 726d53c0..44da2897 100755 --- a/cannaiq/src/components/Layout.tsx +++ b/cannaiq/src/components/Layout.tsx @@ -131,7 +131,7 @@ export function Layout({ children }: LayoutProps) { CannaIQ {versionInfo && (

- v{versionInfo.version} ({versionInfo.git_sha}) {versionInfo.build_time !== 'unknown' && `- ${new Date(versionInfo.build_time).toLocaleDateString()}`} + {versionInfo.git_sha || 'dev'}

)}