From d91503f7c712bfe3cd515bbdc9dc4ad5fb0c1431 Mon Sep 17 00:00:00 2001 From: darecoder1999 Date: Fri, 12 Jun 2020 22:38:41 +0530 Subject: [PATCH] Disables FacetContainer while computing clusters fixes #2675 --- main/webapp/modules/core/scripts/dialogs/clustering-dialog.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js b/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js index c399dbddc..e390a6c82 100644 --- a/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js +++ b/main/webapp/modules/core/scripts/dialogs/clustering-dialog.js @@ -283,6 +283,7 @@ ClusteringDialog.prototype._renderTable = function(clusters) { }; ClusteringDialog.prototype._cluster = function() { + $(".clustering-dialog-facet").css("display","none"); var self = this; var container = this._elmts.tableContainer.html( @@ -304,6 +305,7 @@ ClusteringDialog.prototype._cluster = function() { }, function(data) { self._updateData(data); + $(".clustering-dialog-facet").css("display","block"); }, "json" );