[SG-1039] Disable the KDF iterations warning (#4654)
* Turned off kdf iterations warning * Added more information to comment
This commit is contained in:
parent
28746ed4a6
commit
dc3a0b25cb
|
@ -95,7 +95,8 @@ export class VaultComponent implements OnInit, OnDestroy {
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
|
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
|
||||||
this.showBrowserOutdated = window.navigator.userAgent.indexOf("MSIE") !== -1;
|
this.showBrowserOutdated = window.navigator.userAgent.indexOf("MSIE") !== -1;
|
||||||
this.showLowKdf = await this.isLowKdfIteration();
|
//disable warning for february release -> add await this.isLowKdfIteration(); when ready
|
||||||
|
this.showLowKdf = false;
|
||||||
this.trashCleanupWarning = this.i18nService.t(
|
this.trashCleanupWarning = this.i18nService.t(
|
||||||
this.platformUtilsService.isSelfHost()
|
this.platformUtilsService.isSelfHost()
|
||||||
? "trashCleanupWarningSelfHosted"
|
? "trashCleanupWarningSelfHosted"
|
||||||
|
|
Loading…
Reference in New Issue