This is an automated email from the ASF dual-hosted git repository.
kbhatt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new eb205d2 UI: Regression, DSL Search : Search with select loads forever
eb205d2 is described below
commit eb205d2798b24ffd3056b691f2ffb27d1eb50967
Author: kevalbhatt <[email protected]>
AuthorDate: Mon Jun 24 16:45:25 2019 +0530
UI: Regression, DSL Search : Search with select loads forever
---
dashboardv2/public/js/views/search/SearchResultLayoutView.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dashboardv2/public/js/views/search/SearchResultLayoutView.js
b/dashboardv2/public/js/views/search/SearchResultLayoutView.js
index 6183b81..1d46339 100644
--- a/dashboardv2/public/js/views/search/SearchResultLayoutView.js
+++ b/dashboardv2/public/js/views/search/SearchResultLayoutView.js
@@ -587,7 +587,7 @@ define(['require',
that.tableRender({ "order": that.columnOrder, "table":
TableLayout });
that.checkTableFetch();
}
- that.REntityTableLayoutView.$el.find('.colSort thead tr
th:not(:first)').addClass('dragHandler');
+ that.REntityTableLayoutView.$el.find('.colSort thead tr
th:not(.select-all-header-cell)').addClass('dragHandler');
tableDragger(document.querySelector(".colSort"), {
dragHandler: ".dragHandler" }).on('drop', tableDropFunction);
}
},