From 81d3247c871ced4bb31d2b1cc40e18852d861667 Mon Sep 17 00:00:00 2001 From: Vito Date: Tue, 14 Jul 2020 09:33:51 +0100 Subject: [PATCH] [ADF-5179] - added folders for size filters (#5849) * [ADF-5179] - added folders for size filters * Update app.config.json fixed wrong rebased missed value --- demo-shell/src/app.config.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/demo-shell/src/app.config.json b/demo-shell/src/app.config.json index 4bf4cace91..7e967686ff 100644 --- a/demo-shell/src/app.config.json +++ b/demo-shell/src/app.config.json @@ -498,19 +498,19 @@ "options": [ { "name": "SEARCH.SEARCH_HEADER.FILTERS.SIZE.SMALL", - "value": "content.size:[0 TO 1048576>" + "value": "content.size:[0 TO 1048576] OR TYPE:'cm:folder'" }, { "name": "SEARCH.SEARCH_HEADER.FILTERS.SIZE.MEDIUM", - "value": "content.size:[1048576 TO 52428800]" + "value": "content.size:[1048576 TO 52428800] OR TYPE:'cm:folder'" }, { "name": "SEARCH.SEARCH_HEADER.FILTERS.SIZE.LARGE", - "value": "content.size:<52428800 TO 524288000]" + "value": "content.size:<52428800 TO 524288000] OR TYPE:'cm:folder'" }, { "name": "SEARCH.SEARCH_HEADER.FILTERS.SIZE.HUGE", - "value": "content.size:<524288000 TO MAX]" + "value": "content.size:<524288000 TO MAX] OR TYPE:'cm:folder'" } ] }