This commit is contained in:
geek 2018-06-01 18:16:23 +09:00
parent 46699940be
commit 16ee0e825f
2 changed files with 3 additions and 3 deletions

View File

@ -37,12 +37,12 @@ export class MemberTotpComponent implements OnInit {
if (this.selectedItem.id === 3) { if (this.selectedItem.id === 3) {
this.headerItem = '구글 인증기 설정하기'; this.headerItem = '구글 인증기 설정하기';
this.totpSettingDisplay = true; this.totpSettingDisplay = true;
this.create.emit(this.domainMember.member); // this.create.emit(this.domainMember.member);
} }
} }
totpInput(e) { totpInput(e) {
if (e.target.value.length === 6) { if (e.target.value.length >= 6) {
this.regist.emit(e.target.value); this.regist.emit(e.target.value);
} }
return; return;

View File

@ -2,7 +2,7 @@
<div class="ui-g"> <div class="ui-g">
<div class="ui-g-12"> <div class="ui-g-12">
<div class="card no-margin"> <div class="card no-margin">
<of-member-totp-container></of-member-totp-container> <of-member-totp></of-member-totp>
</div> </div>
</div> </div>
</div> </div>