Merge pull request #81 from ammendonca/KEYCLOAK-103

KEYCLOAK-103: Add Base URL information to application table. In case it'...
This commit is contained in:
Bill Burke 2013-10-23 07:42:08 -07:00
commit 9e4d5f0eb6

View file

@ -54,7 +54,7 @@
<tr ng-repeat="app in applications">
<td><a href="#/realms/{{realm.id}}/applications/{{app.id}}">{{app.name}}</a></td>
<td>{{app.enabled}}</td>
<td></td>
<td ng-class="{'text-muted': !app.baseUrl}">{{app.baseUrl || "Not defined"}}</td>
</tr>
</tbody>
</table>