Disables FacetContainer while computing clusters

fixes #2675
This commit is contained in:
darecoder1999 2020-06-12 22:38:41 +05:30
parent a7e84e8a56
commit d91503f7c7

View File

@ -283,6 +283,7 @@ ClusteringDialog.prototype._renderTable = function(clusters) {
}; };
ClusteringDialog.prototype._cluster = function() { ClusteringDialog.prototype._cluster = function() {
$(".clustering-dialog-facet").css("display","none");
var self = this; var self = this;
var container = this._elmts.tableContainer.html( var container = this._elmts.tableContainer.html(
@ -304,6 +305,7 @@ ClusteringDialog.prototype._cluster = function() {
}, },
function(data) { function(data) {
self._updateData(data); self._updateData(data);
$(".clustering-dialog-facet").css("display","block");
}, },
"json" "json"
); );