mirror of https://github.com/apache/lucene.git
SOLR-8715: Admin UI - Fix schema special case
This commit is contained in:
parent
f20e2f3a94
commit
cea8a488f0
|
@ -208,6 +208,8 @@ Bug Fixes
|
|||
|
||||
* SOLR-9232: Admin UI now fully implements Swap Cores interface (Alexandre Rafalovitch)
|
||||
|
||||
* SOLR-8715: Admin UI's Schema screen now works for fields with stored=false and some content indexed (Alexandre Rafalovitch)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -477,6 +477,10 @@ var getFieldProperties = function(data, core, is, field) {
|
|||
var row = display.rows[i];
|
||||
row.cells = [];
|
||||
|
||||
if (!row.flags) {
|
||||
continue; // Match the special case in the LukeRequestHandler
|
||||
}
|
||||
|
||||
for (var j in display.columns) {
|
||||
var flag = display.columns[j].key;
|
||||
row.cells.push({key: flag, value: row.flags.indexOf(flag)>=0});
|
||||
|
|
Loading…
Reference in New Issue