SOLR-9624: Do not highlight CSV output

This commit is contained in:
Alexandre Rafalovitch 2016-11-06 14:09:55 +11:00
parent 4b3e7f2fe2
commit 94c796968a
2 changed files with 3 additions and 1 deletions

View File

@ -120,6 +120,8 @@ Bug Fixes
* SOLR-9716: RecoveryStrategy sends prep recovery command without setting read time out which can cause
replica recovery to hang indefinitely on network partitions. (Cao Manh Dat, shalin)
* SOLR-9624: In Admin UI, do not attempt to highlight CSV output (Alexandre Rafalovitch)
Other Changes
----------------------

View File

@ -148,7 +148,7 @@ solrAdminApp.config([
})
.filter('highlight', function($sce) {
return function(input, lang) {
if (lang && input && lang!="txt") return hljs.highlight(lang, input).value;
if (lang && input && lang!="txt" && lang!="csv") return hljs.highlight(lang, input).value;
return input;
}
})