aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/executorspage.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/src/main/resources/org/apache/spark/ui/static/executorspage.js b/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
index 1df67337ea..fe5db6aa26 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
+++ b/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
@@ -412,10 +412,6 @@ $(document).ready(function () {
],
"columnDefs": [
{
- "targets": [ 15 ],
- "visible": logsExist(response)
- },
- {
"targets": [ 16 ],
"visible": getThreadDumpEnabled()
}
@@ -423,7 +419,8 @@ $(document).ready(function () {
"order": [[0, "asc"]]
};
- $(selector).DataTable(conf);
+ var dt = $(selector).DataTable(conf);
+ dt.column(15).visible(logsExist(response));
$('#active-executors [data-toggle="tooltip"]').tooltip();
var sumSelector = "#summary-execs-table";