From 39cc620e9c9bf3722992da8d39a928ba638ff21d Mon Sep 17 00:00:00 2001
From: Alex Bozarth <ajbozart@us.ibm.com>
Date: Wed, 10 Feb 2016 14:07:50 -0600
Subject: [PATCH] [SPARK-13163][WEB UI] Column width on new History Server
 DataTables not getting set correctly

The column width for the new DataTables now adjusts for the current page rather than being hard-coded for the entire table's data.

Author: Alex Bozarth <ajbozart@us.ibm.com>

Closes #11057 from ajbozarth/spark13163.
---
 .../src/main/resources/org/apache/spark/ui/static/historypage.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/src/main/resources/org/apache/spark/ui/static/historypage.js b/core/src/main/resources/org/apache/spark/ui/static/historypage.js
index 785abe45bc..689c92e861 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/historypage.js
+++ b/core/src/main/resources/org/apache/spark/ui/static/historypage.js
@@ -118,6 +118,7 @@ $(document).ready(function() {
                         {name: 'seventh'},
                         {name: 'eighth'},
                     ],
+                    "autoWidth": false
         };
 
         var rowGroupConf = {
-- 
GitLab