File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import TypeSection from '../ui/TypeSection';
66import TypeArray from '../ui/TypeArray' ;
77import getJobDataVariant from '../../utils/getJobDataVariant' ;
88
9+ // eslint-disable-next-line no-unused-vars
910const JobTaskProgressTypeUnit = ( { value = { } } ) => (
1011 < >
1112 < TextGrid title = "percent" value = { value . percent } hideNoValue />
@@ -15,12 +16,9 @@ const JobTaskProgressTypeUnit = ({ value = {} }) => (
1516
1617const JobTaskProgressType = ( { value = { } } ) => (
1718 < >
18- < TextGrid title = "Total" value = { value . total } hideNoValue hover />
19- < TypeSection
20- component = { JobTaskProgressTypeUnit }
21- value = { value . unit }
22- hideNoValue
23- />
19+ < TextGrid title = "Value" value = { value . value } hideNoValue />
20+ < TextGrid title = "Total" value = { value . total } hideNoValue />
21+ < TextGrid title = "Unit" value = { value . unit } hideNoValue />
2422 </ >
2523) ;
2624
You can’t perform that action at this time.
0 commit comments