diff --git a/src/fireedge/src/client/components/Status/LinearProgressWithLabel.js b/src/fireedge/src/client/components/Status/LinearProgressWithLabel.js index 62efbb09f6..ae83ee38f8 100644 --- a/src/fireedge/src/client/components/Status/LinearProgressWithLabel.js +++ b/src/fireedge/src/client/components/Status/LinearProgressWithLabel.js @@ -18,8 +18,8 @@ const BorderLinearProgress = withStyles(({ palette }) => ({ } }))(LinearProgress) -const LinearProgressWithLabel = memo(({ value, label }) => ( -
+const LinearProgressWithLabel = memo(({ value, label, title }) => ( +
{label}
@@ -27,7 +27,8 @@ const LinearProgressWithLabel = memo(({ value, label }) => ( LinearProgressWithLabel.propTypes = { value: PropTypes.number.isRequired, - label: PropTypes.string.isRequired + label: PropTypes.string.isRequired, + title: PropTypes.string } LinearProgressWithLabel.displayName = 'LinearProgressWithLabel'