From cbe90557bb99b680ceaf14bea42a21883cea9d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 10 Aug 2018 15:46:25 +0100 Subject: [PATCH] fix(ui): fix history menu after popper update --- .../Components/NavBar/FilterInput/History.js | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/ui/src/Components/NavBar/FilterInput/History.js b/ui/src/Components/NavBar/FilterInput/History.js index 7977a2d30..7ffaef45f 100644 --- a/ui/src/Components/NavBar/FilterInput/History.js +++ b/ui/src/Components/NavBar/FilterInput/History.js @@ -246,28 +246,28 @@ const History = observer( )} - - {this.collapse.value - ? ({ placement, ref, style }) => - : ({ placement, ref, style }) => ( - - )} - + {this.collapse.value ? null : ( + + {({ placement, ref, style }) => ( + + )} + + )} ); }