Skip to content

Commit

Permalink
refactor: change builds visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
mari1912 committed Jul 5, 2024
1 parent 76e2ea6 commit 25be3fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const TreeListingPage = ({inputFilter}: ITreeListingPage): JSX.Element => {
name: tree.tree_name ?? '',
branch: tree.git_repository_branch ?? '',
commit: tagCommit,
buildStatus: `${tree.build_status.valid} / ${tree.build_status.invalid}`,
buildStatus: `${tree.build_status.invalid} / ${tree.build_status.invalid + tree.build_status.valid}`,
testStatus: `${tree.test_status.fail} / ${tree.test_status.total}`,
})
})
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/locales/messages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const messages = {
},
treeTable: {
branch: "Branch",
build: "Build Status (Valid / Invalid)",
build: "Build Status (Failed / Total)",
commit: "Tag - Commit",
test: "Test Status (Failed / Total)",
tree: "Tree",
Expand Down

0 comments on commit 25be3fb

Please sign in to comment.