GUACAMOLE-1584: add CSS ids to section headers on home page

This commit is contained in:
Dustin Lang
2022-04-18 14:44:27 -04:00
parent 376c71fe58
commit ed390839d7

View File

@@ -4,14 +4,14 @@
<!-- The recent connections for this user --> <!-- The recent connections for this user -->
<div class="header"> <div class="header">
<h2>{{'HOME.SECTION_HEADER_RECENT_CONNECTIONS' | translate}}</h2> <h2 id="section-header-recent-connections">{{'HOME.SECTION_HEADER_RECENT_CONNECTIONS' | translate}}</h2>
<guac-user-menu></guac-user-menu> <guac-user-menu></guac-user-menu>
</div> </div>
<guac-recent-connections root-groups="rootConnectionGroups"></guac-recent-connections> <guac-recent-connections root-groups="rootConnectionGroups"></guac-recent-connections>
<!-- All connections for this user --> <!-- All connections for this user -->
<div class="header"> <div class="header">
<h2>{{'HOME.SECTION_HEADER_ALL_CONNECTIONS' | translate}}</h2> <h2 id="section-header-all-connections">{{'HOME.SECTION_HEADER_ALL_CONNECTIONS' | translate}}</h2>
<guac-group-list-filter connection-groups="rootConnectionGroups" <guac-group-list-filter connection-groups="rootConnectionGroups"
filtered-connection-groups="filteredRootConnectionGroups" filtered-connection-groups="filteredRootConnectionGroups"
placeholder="'HOME.FIELD_PLACEHOLDER_FILTER' | translate" placeholder="'HOME.FIELD_PLACEHOLDER_FILTER' | translate"