From 726dd0463944161f11ebdf49d12557f8a1eac777 Mon Sep 17 00:00:00 2001 From: aynsix Date: Wed, 4 Dec 2024 16:30:42 +0300 Subject: [PATCH] fix icon alignement and add git-log link --- dashboard/client/src/Dashboard.tsx | 34 ++++++++++++++++++------------ 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/dashboard/client/src/Dashboard.tsx b/dashboard/client/src/Dashboard.tsx index e542695ec..ce65734d2 100644 --- a/dashboard/client/src/Dashboard.tsx +++ b/dashboard/client/src/Dashboard.tsx @@ -65,20 +65,26 @@ export default function Dashboard({}: Props) { }, }} > - { - config.logo ? {STACK_NAME} - : STACK_NAME - } - - {user ? ( - } - label={STACK_VERSION} - color={'info'} - /> - ) : ( - '' - )} +
+ { + config.logo ? {STACK_NAME} + : STACK_NAME + } + + {user ? ( + } + label={STACK_VERSION} + color={'info'} + component="a" + href="/git-log.html" + target={'_blank'} + clickable + /> + ) : ( + '' + )} +
)}