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');
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\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" +
" </h3>\n" +
" <p class=\"results-message-details\">\n" +
......
......@@ -269,7 +269,7 @@ hawtioPluginLoader.addModule('openshiftCommonUI');
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\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" +
" </h3>\n" +
" <p class=\"results-message-details\">\n" +
......
......@@ -84,7 +84,7 @@ angular.module('openshiftCommonUI').run(['$templateCache', function($templateCac
" <strong>{{ctrl.applicationToBind}}</strong> successfully.\n" +
" </span>\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" +
" </h3>\n" +
" <p class=\"results-message-details\">\n" +
......
......@@ -20,7 +20,7 @@
<strong>{{ctrl.applicationToBind}}</strong> successfully.
</span>
<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>
</h3>
<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