From f40a7bd65aef22a173d7414b875673b1e6a38454 Mon Sep 17 00:00:00 2001 From: Emil Virkki Date: Wed, 20 Jul 2016 04:53:05 +0300 Subject: [PATCH] Add empty option back to filters --- src/client/actions/SearchFilterActions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/actions/SearchFilterActions.js b/src/client/actions/SearchFilterActions.js index 8a7906cc..ad0d5abf 100644 --- a/src/client/actions/SearchFilterActions.js +++ b/src/client/actions/SearchFilterActions.js @@ -59,7 +59,7 @@ export function getSearchFilterActions(alt, searchFilterResource, participantRes if (x[property]) { x[property].push(response[i].value); } else { - x[property] = []; + x[property] = ['']; x[property].push(response[i].value); } }