From 3c4b5db04935499972c281cc28cce8fb3e529a4a Mon Sep 17 00:00:00 2001 From: Alexandre Rafalovitch Date: Wed, 27 Jul 2016 00:33:09 +1000 Subject: [PATCH 1/2] Angular Admin UI: Fix cut-off overflow strings on dashboard page (FIX SOLR-8911) --- solr/webapp/web/css/angular/index.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/solr/webapp/web/css/angular/index.css b/solr/webapp/web/css/angular/index.css index 5b77a15a866a..3bb711852005 100644 --- a/solr/webapp/web/css/angular/index.css +++ b/solr/webapp/web/css/angular/index.css @@ -110,6 +110,17 @@ limitations under the License. width: 40%; } +#content #index .data +{ + padding-bottom: 12px; + overflow: hidden; +} + +#content #index .data:hover +{ + overflow-x: auto; +} + #content #index .data li { padding-top: 3px; @@ -127,7 +138,6 @@ limitations under the License. { float: right; text-overflow: ellipsis; - overflow: hidden; white-space: nowrap; width: 80% } From f5e7707d23c9f8570882fc79f679a91a0a3fe6c4 Mon Sep 17 00:00:00 2001 From: Alexandre Rafalovitch Date: Wed, 27 Jul 2016 08:14:44 +1000 Subject: [PATCH 2/2] SOLR-8715: Match special condition in the UI --- solr/webapp/web/js/angular/controllers/schema.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/solr/webapp/web/js/angular/controllers/schema.js b/solr/webapp/web/js/angular/controllers/schema.js index 22f752e7b75b..859d14c936f6 100644 --- a/solr/webapp/web/js/angular/controllers/schema.js +++ b/solr/webapp/web/js/angular/controllers/schema.js @@ -475,6 +475,11 @@ var getFieldProperties = function(data, core, is, field) { // identify rows and cell values in field property table: for (var i in display.rows) { var row = display.rows[i]; + + if (!row.flags) { + continue; //Match the special case in the LukeRequestHandler + } + row.cells = []; for (var j in display.columns) {