mirror of https://github.com/apache/lucene.git
SOLR-4079: Long core names break web gui appearance and functionality
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1429292 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7364aab17f
commit
babf990922
|
@ -456,7 +456,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-4176: analysis ui: javascript not properly handling URL decoding
|
||||
of input (steffkes)
|
||||
|
||||
|
||||
* SOLR-4079: Long core names break web gui appearance and functionality
|
||||
(steffkes)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
{
|
||||
display: block;
|
||||
padding: 4px 2px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
#menu-wrapper .active p
|
||||
|
|
|
@ -224,7 +224,7 @@ var solr_admin = function( app_config )
|
|||
+ ' schema="' + cores.status[core_name]['schema'] + '"'
|
||||
+ ' config="' + cores.status[core_name]['config'] + '"'
|
||||
+ '>' + "\n"
|
||||
+ ' <p><a href="#/' + core_name + '">' + core_name + '</a></p>' + "\n"
|
||||
+ ' <p><a href="#/' + core_name + '" title="' + core_name + '">' + core_name + '</a></p>' + "\n"
|
||||
+ ' <ul>' + "\n"
|
||||
|
||||
+ ' <li class="ping"><a rel="' + core_path + '/admin/ping"><span>Ping</span></a></li>' + "\n"
|
||||
|
|
Loading…
Reference in New Issue