diff --git a/dashboard/src/components/Table/TreeTable.tsx b/dashboard/src/components/Table/TreeTable.tsx index d120d4c..28810bd 100644 --- a/dashboard/src/components/Table/TreeTable.tsx +++ b/dashboard/src/components/Table/TreeTable.tsx @@ -1,5 +1,7 @@ import { useMemo } from "react"; +import { FormattedMessage } from "react-intl"; + import { TableRow, TableCell } from "../ui/table"; import { TreeTableBody } from "../../types/tree/Tree"; @@ -19,13 +21,18 @@ const treeTableColumnsLabelId = [ ]; const TreeTableRow = (row: TreeTableBody): JSX.Element => { + const backgroundClassName = "flex flex-row bg-lightGray w-fit h-fit p-1 rounded-lg"; return ( {row.name} {row.branch} {row.commit} -
{row.buildStatus}
-
{row.testStatus}
+
{row.buildStatus}
+ +
+ +
{row.testStatus}
+
); }; diff --git a/dashboard/src/locales/messages/index.ts b/dashboard/src/locales/messages/index.ts index c5b8e8b..fdcca9d 100644 --- a/dashboard/src/locales/messages/index.ts +++ b/dashboard/src/locales/messages/index.ts @@ -18,8 +18,9 @@ export const messages = { }, treeTable: { branch: "Branch", - build: "Build Status", + build: "Build Status (valid / invalid)", commit: "Commit/tag", + finished: "Finished", test: "Test Status", tree: "Tree", },