Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Switch externalId name/value to go along his hmda-platform bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkeeler committed Feb 9, 2017
1 parent 3ad4c22 commit d487155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keycloak/themes/hmda/login/register.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ function getExternalIds(externalIds) {
if(externalIds.length > 0) {
html = '<dl class="usa-text-small">';
for (var i = 0; i < externalIds.length; i++) {
html += '<dt>' + externalIdTypeNames[externalIds[i].value] + ': </dt>';
html += '<dd>' + externalIds[i].name + '</dd>';
html += '<dt>' + externalIdTypeNames[externalIds[i].name] + ': </dt>';
html += '<dd>' + externalIds[i].value + '</dd>';
}
}
Expand Down

0 comments on commit d487155

Please sign in to comment.