[ARVADOS] updated: 43eb8f415a1a28bfb721892d51b5ba002ac113ea
Git user
git at public.curoverse.com
Thu Sep 7 21:46:39 EDT 2017
Summary of changes:
apps/workbench/app/assets/javascripts/filterable.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 43eb8f415a1a28bfb721892d51b5ba002ac113ea (commit)
from 9a9e79d72b7e3d31df178f5c08f2624cd22d9d1c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 43eb8f415a1a28bfb721892d51b5ba002ac113ea
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date: Thu Sep 7 21:45:23 2017 -0400
12194: Fix empty search case.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>
diff --git a/apps/workbench/app/assets/javascripts/filterable.js b/apps/workbench/app/assets/javascripts/filterable.js
index c85d40f..40df5c7 100644
--- a/apps/workbench/app/assets/javascripts/filterable.js
+++ b/apps/workbench/app/assets/javascripts/filterable.js
@@ -57,7 +57,7 @@ function updateFilterableQueryNow($target) {
var newquery = $target.data('filterable-query-new');
var params = $target.data('infinite-content-params-filterable') || {};
var tsquery = to_tsquery(newquery);
- if (newquery == null) {
+ if (tsquery == null) {
params.filters = [];
} else {
params.filters = [['any', '@@', tsquery]];
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list