SOLR-9624: Do not highlight CSV output

This commit is contained in:
Alexandre Rafalovitch 2016-11-06 14:17:05 +11:00
parent b157e43b9a
commit f0447c456a
2 changed files with 3 additions and 1 deletions

View File

@ -66,6 +66,8 @@ Bug Fixes
* SOLR-9716: RecoveryStrategy sends prep recovery command without setting read time out which can cause * 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) 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 Other Changes
---------------------- ----------------------

View File

@ -148,7 +148,7 @@ solrAdminApp.config([
}) })
.filter('highlight', function($sce) { .filter('highlight', function($sce) {
return function(input, lang) { 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; return input;
} }
}) })