FIX Altering ID of authenticator tabs to resolve ID conflict

This commit is contained in:
Guy Marriott 2018-07-27 16:01:52 +12:00
parent b984959170
commit 0d90cdb05d
No known key found for this signature in database
GPG Key ID: A80F9ACCB86D3DA7
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
<ul>
<% loop $Forms %>
<li>
<a href="#{$FormName}">$AuthenticatorName</a>
<a href="#{$FormName}_Tab">$AuthenticatorName</a>
</li>
<% end_loop %>
</ul>
<% loop $Forms %>
<div class="form-tab" id="{$FormName}">
<div class="form-tab" id="{$FormName}_Tab">
<h3>$AuthenticatorName</h3>
$forTemplate
</div>