diff --git a/ui/src/Components/Labels/HistoryLabel/index.js b/ui/src/Components/Labels/HistoryLabel/index.js index 5b0c52cba..0fe5cac9e 100644 --- a/ui/src/Components/Labels/HistoryLabel/index.js +++ b/ui/src/Components/Labels/HistoryLabel/index.js @@ -18,7 +18,8 @@ const HistoryLabel = observer( )} mw-100`} style={this.getColorStyle(name, value)} > - {name}: {value} + {name ? `${name}: ` : null} + {value} ); }