diff options
author | Olivier Lamy <olamy@apache.org> | 2012-11-15 12:54:06 +0000 |
---|---|---|
committer | Olivier Lamy <olamy@apache.org> | 2012-11-15 12:54:06 +0000 |
commit | 2b265b151f2e89b56f659605dd676110f89964f7 (patch) | |
tree | 619ca4ed854470316d9fcd39794a5bf6d8afbb1f | |
parent | 47ac832a9575f1b3f306d13e4c2e69464044d8e1 (diff) | |
download | archiva-2b265b151f2e89b56f659605dd676110f89964f7.tar.gz archiva-2b265b151f2e89b56f659605dd676110f89964f7.zip |
fix settings display
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1409759 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html index 2eab91934..c4f9043d8 100644 --- a/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html +++ b/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html @@ -916,7 +916,7 @@ <td> <a class="btn btn-info btn-mini" id="proxy-connectors-grid-remoterepo-settings-edit-${row.sourceRepoId()}-${row.targetRepoId()}" data-original-title="${$.i18n.prop('proxy-connectors.grid.remoterepo.settings.popover.title')}" - data-content="${buildSettings(row)}" data-bind="click: showSettings"> + data-content="${buildSettings(row)}" data-bind="click: showSettings" data-html="true"> <i class="icon-question-sign icon-white"></i> </a> @@ -961,13 +961,13 @@ </script> <script id='proxy-connectors-remote-settings-popover-tmpl' type='text/html'> - <div> + <span> {{if proxyId}} ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${proxyConnector.proxyId} {{else}} ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${$.i18n.prop('none')} {{/if}} - <table class="table"> + <table class="table table-bordered"> <thead> <th colspan="2">${$.i18n.prop('proxy-connector.policies')}</th> </thead> @@ -981,7 +981,7 @@ {{/each}} </tbody> </table> - </div> + </span> </script> <script id="proxy-connector-edit-form-tmpl" type='text/html'> |