KEYCLOAK-103: Add Base URL information to application table. In case it's not defined, a 'Not defined' text is shown in muted class.

This commit is contained in:
ammendonca 2013-10-22 17:44:36 +01:00
parent 39a3e14004
commit b996ad301f

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>