Unverified Commit 9e0d63ef by Robb Hamilton Committed by GitHub

Merge pull request #241 from rhamilto/issue-2183

Correct binding name in binding results
parents ef444fcb a59a359b
...@@ -113,7 +113,7 @@ hawtioPluginLoader.addModule('openshiftCommonUI'); ...@@ -113,7 +113,7 @@ hawtioPluginLoader.addModule('openshiftCommonUI');
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" + " <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\n" + " </span>\n" +
" <span ng-if=\"ctrl.bindType !== 'application'\">\n" + " <span ng-if=\"ctrl.bindType !== 'application'\">\n" +
" The binding <strong>{{ctrl.serviceToBind}}</strong> has been created successfully.\n" + " The binding <strong>{{ctrl.binding.metadata.name}}</strong> has been created successfully.\n" +
" </span>\n" + " </span>\n" +
" </h3>\n" + " </h3>\n" +
" <p class=\"results-message-details\">\n" + " <p class=\"results-message-details\">\n" +
......
...@@ -269,7 +269,7 @@ hawtioPluginLoader.addModule('openshiftCommonUI'); ...@@ -269,7 +269,7 @@ hawtioPluginLoader.addModule('openshiftCommonUI');
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" + " <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\n" + " </span>\n" +
" <span ng-if=\"ctrl.bindType !== 'application'\">\n" + " <span ng-if=\"ctrl.bindType !== 'application'\">\n" +
" The binding <strong>{{ctrl.serviceToBind}}</strong> has been created successfully.\n" + " The binding <strong>{{ctrl.binding.metadata.name}}</strong> has been created successfully.\n" +
" </span>\n" + " </span>\n" +
" </h3>\n" + " </h3>\n" +
" <p class=\"results-message-details\">\n" + " <p class=\"results-message-details\">\n" +
......
...@@ -84,7 +84,7 @@ angular.module('openshiftCommonUI').run(['$templateCache', function($templateCac ...@@ -84,7 +84,7 @@ angular.module('openshiftCommonUI').run(['$templateCache', function($templateCac
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" + " <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\n" + " </span>\n" +
" <span ng-if=\"ctrl.bindType !== 'application'\">\n" + " <span ng-if=\"ctrl.bindType !== 'application'\">\n" +
" The binding <strong>{{ctrl.serviceToBind}}</strong> has been created successfully.\n" + " The binding <strong>{{ctrl.binding.metadata.name}}</strong> has been created successfully.\n" +
" </span>\n" + " </span>\n" +
" </h3>\n" + " </h3>\n" +
" <p class=\"results-message-details\">\n" + " <p class=\"results-message-details\">\n" +
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<strong>{{ctrl.applicationToBind}}</strong> successfully. <strong>{{ctrl.applicationToBind}}</strong> successfully.
</span> </span>
<span ng-if="ctrl.bindType !== 'application'"> <span ng-if="ctrl.bindType !== 'application'">
The binding <strong>{{ctrl.serviceToBind}}</strong> has been created successfully. The binding <strong>{{ctrl.binding.metadata.name}}</strong> has been created successfully.
</span> </span>
</h3> </h3>
<p class="results-message-details"> <p class="results-message-details">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment