From e0d49175664f70f7a831a57e0f108cbef3192b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Sun, 2 Sep 2018 18:27:36 +0100 Subject: [PATCH] fix(ui): remove dead code isSelected doesn't seem to get trigger in any way --- ui/src/Components/MultiSelect/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/Components/MultiSelect/index.js b/ui/src/Components/MultiSelect/index.js index d8a528d52..3b4b82dc3 100644 --- a/ui/src/Components/MultiSelect/index.js +++ b/ui/src/Components/MultiSelect/index.js @@ -78,7 +78,7 @@ const ReactSelectStyles = { }), option: (base, state) => ({ ...base, - color: state.isSelected ? "#95a5a6" : "inherit", + color: "inherit", backgroundColor: "inherit", "&:hover": { color: "#fff", backgroundColor: "#455a64", cursor: "pointer" } })