diff --git a/web/src/components/data-table/Cells.tsx b/web/src/components/data-table/Cells.tsx index 72accff..decec4a 100644 --- a/web/src/components/data-table/Cells.tsx +++ b/web/src/components/data-table/Cells.tsx @@ -27,7 +27,7 @@ export const TitleCell = ({ value }: CellProps) => ( label={value} maxWidth="max-w-[90vw]" > - + {value} @@ -114,10 +114,10 @@ const CellLine = ({ title, children }: { title: string; children?: string; }) => return null; return ( -
+
{title} {": "} - {children} + {children}
); }; @@ -142,7 +142,7 @@ export const ReleaseStatusCell = ({ value }: ReleaseStatusCellProps) => ( {v.filter} {simplifyDate(v.timestamp)} {v.rejections.length ? ( - + {v.rejections.toString()} ) : null} diff --git a/web/src/screens/filters/details.tsx b/web/src/screens/filters/details.tsx index df4f392..1b6eeb6 100644 --- a/web/src/screens/filters/details.tsx +++ b/web/src/screens/filters/details.tsx @@ -69,8 +69,8 @@ function TabNavLink({ item }: NavLinkProps) { to={item.href} end className={({ isActive }) => classNames( - "text-gray-500 hover:text-purple-600 dark:hover:text-white hover:border-purple-600 dark:hover:border-blue-500 whitespace-nowrap py-4 px-1 font-medium text-sm", - isActive ? "border-b-2 border-purple-600 dark:border-blue-500 text-purple-600 dark:text-white" : "" + "text-gray-500 hover:text-blue-600 dark:hover:text-white hover:border-blue-600 dark:hover:border-blue-500 whitespace-nowrap py-4 px-1 font-medium text-sm", + isActive ? "border-b-2 border-blue-600 dark:border-blue-500 text-blue-600 dark:text-white" : "" )} aria-current={splitLocation[2] === item.href ? "page" : undefined} >