From 7516c940f5b9e3fd0f9b72b981a5f4df4cd1f301 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 12 Oct 2015 15:41:11 +0100 Subject: [PATCH] use default value instead of '', fixes #2848 --- source/UI/js/Form/Filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/Form/Filter.js b/source/UI/js/Form/Filter.js index 7a67d82f..f925b653 100644 --- a/source/UI/js/Form/Filter.js +++ b/source/UI/js/Form/Filter.js @@ -299,7 +299,7 @@ Ox.Filter = function(options, self) { condition = { key: key.id, operator: condition.operator, - value: '' + value: self.defaultValue[key.type] }; if (isGroup) { Ox.Log('Form', 'isGroup', self.options.value.operator)