diff --git a/nexus/plugins/indexer/nexus-indexer-lucene-plugin/src/main/js/repoServer.ArtifactInformationPanel.js b/nexus/plugins/indexer/nexus-indexer-lucene-plugin/src/main/js/repoServer.ArtifactInformationPanel.js index 0edb566022..b8b51786ef 100644 --- a/nexus/plugins/indexer/nexus-indexer-lucene-plugin/src/main/js/repoServer.ArtifactInformationPanel.js +++ b/nexus/plugins/indexer/nexus-indexer-lucene-plugin/src/main/js/repoServer.ArtifactInformationPanel.js @@ -12,6 +12,13 @@ */ Ext.form.RepositoryUrlDisplayField = Ext.extend(Ext.form.DisplayField, { setValue : function(repositories) { + if (typeof repositories === 'string') { + // display value was already set when field was not visible - repositories already + // contains the raw value. + this.setRawValue(repositories); + return this; + } + var links = ''; for (var i = 0; i < repositories.length; i++)