Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix link shown on cf dashboard when no endpoints connected #1369

Merged
merged 1 commit into from
Nov 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<div class="actions">
<span class="action">
<a class="btn-border-less" href="#/account/settings">
<a class="btn-border-less" href="#!/account/settings">
<i class="material-icons">info_outline</i>
<div translate>
About
Expand Down
2 changes: 1 addition & 1 deletion components/cloud-foundry/frontend/i18n/en_US/errors.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"errors": {
"no-cf-connected": "No connected [[@:cloud-foundry]] endpoints.",
"no-cf-connected-text": "<a class=\"btn-link\" href=\"/#/endpoint\">Use the Endpoints Dashboard</a> to fix your connections or connect to new endpoints.",
"no-cf-connected-text": "<a class=\"btn-link\" href=\"/#!/endpoint\">Use the Endpoints Dashboard</a> to fix your connections or connect to new endpoints.",
"no-cf-connected-cant-fix-text": "Please contact your administrator."
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
};

function goToApp(clusterGuid, appGuid) {
var url = helpers.getHost() + '/#/cf/applications/' + clusterGuid + '/app/' + appGuid + '/summary';
var url = helpers.getHost() + '/#!/cf/applications/' + clusterGuid + '/app/' + appGuid + '/summary';
return browser.get(url)
.then(function () {
return browser.getCurrentUrl();
Expand Down