Skip to content

Commit

Permalink
Add missing params
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Feb 5, 2021
1 parent aceb1fd commit 1fb903a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/main/webapp/user/otp-detail.zul
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<z:div sclass="@load(empty vm.tokenType ? '' : 'flex flex-wrap')">
<div class="mb2">
<z:radio label="${labels.usr.otp_soft}" radiogroup="style" sclass="db dark-blue2 mr4" checked="@load(vm.tokenType eq 'SOFT')"
w:onClick="alertRef = $('#feedback-otp')" onCheck="@('chooseType', 'SOFT')"/>
w:onClick="alertRef = $('#feedback-otp')" onCheck="@('chooseType', 'SOFT', null)"/>
<z:div class="f7 pl3-ns gray" visible="@load(empty vm.tokenType)">${labels.usr.otp_soft_text}</z:div>
</div>
<div class="mb2">
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/webapp/user/phone-detail-shared.zul
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<div class="pb3 flex flex-wrap">
<div class="relative w4 mt3 pr3">
<z:textbox id="sentCode" sclass="focused-text w-100 pb1" value="@bind(vm.code)" ca:required="required"
onOK="@('checkCode')"/>
onOK="@('checkCode', ninick)"/>
<label class="focused-label">${labels.usr.mobile_code}</label>
</div>
<div class="pt2">
Expand Down

0 comments on commit 1fb903a

Please sign in to comment.