Skip to content

Commit

Permalink
fix(settings): show server name and hostname in "About"
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Apr 7, 2016
1 parent 1d4742c commit 56395ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/settings/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ <h1 class="title">About Compass</h1>
</div>
<div class="row">
<div class="col col-25">Server:</div>
<div class="col" ng-click="util.openServer()">{{serverURL}}</div>
<div class="col" ng-click="util.openServer()">{{defaultServer.name}}</div>
</div>
<div class="row">
<div class="col col-25">Host:</div>
<div class="col" ng-click="util.openServer()">{{defaultServer.getHost()}}</div>
</div>
<div class="row">
<div class="col col-25">User:</div>
Expand Down

0 comments on commit 56395ef

Please sign in to comment.