Skip to content

Commit

Permalink
Use inline-block for caution message
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Sicker <boards@gmail.com>
  • Loading branch information
jvz committed Jul 23, 2019
1 parent dd269c3 commit 6e9b44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/lib/credentials/select/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ Behaviour.specify("DIV.include-user-credentials", 'include-user-credentials', 0,
e.querySelector("input[name='includeUser']").addEventListener('click', function (evt) {
var caution = e.querySelector("div.user-credentials-caution");
if (this.checked) {
caution.setAttribute('style', 'display:block');
caution.setAttribute('style', 'display:inline-block');
} else {
caution.setAttribute('style', 'display:none');
}
Expand Down

0 comments on commit 6e9b44f

Please sign in to comment.