Skip to content

Commit 31ddd20

Browse files
committed
add title to isSatisfied
1 parent 1c0b3b0 commit 31ddd20

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Routes/Tables/Algorithms/columns.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ const LastModified = timestamp => (
1919
// eslint-disable-next-line react/prop-types, no-unused-vars
2020
const HotWorkers = ({ minHotWorkers, isSatisfied }) => (
2121
<Tag
22-
title={!isSatisfied ? 'isSatisfied' : null}
22+
title={
23+
!isSatisfied
24+
? 'There are not enough workers for the algorithm requirements'
25+
: null
26+
}
2327
color={!isSatisfied ? COLOR_PIPELINE_STATUS[FAILED] : ''}>
2428
{minHotWorkers}
2529
</Tag>

0 commit comments

Comments
 (0)