From 9baeab3d539e44ee85e9980731f4ff3a6562aecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Sat, 28 Jul 2018 19:58:22 +0200 Subject: [PATCH] fix(ui): fix rendering fuzzy filter rendering in the history --- ui/src/Components/Labels/HistoryLabel/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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} ); }