We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c0b3b0 commit 31ddd20Copy full SHA for 31ddd20
src/Routes/Tables/Algorithms/columns.js
@@ -19,7 +19,11 @@ const LastModified = timestamp => (
19
// eslint-disable-next-line react/prop-types, no-unused-vars
20
const HotWorkers = ({ minHotWorkers, isSatisfied }) => (
21
<Tag
22
- title={!isSatisfied ? 'isSatisfied' : null}
+ title={
23
+ !isSatisfied
24
+ ? 'There are not enough workers for the algorithm requirements'
25
+ : null
26
+ }
27
color={!isSatisfied ? COLOR_PIPELINE_STATUS[FAILED] : ''}>
28
{minHotWorkers}
29
</Tag>
0 commit comments