1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

dont use cipher revisionDate

This commit is contained in:
Kyle Spearrin 2018-07-30 22:01:21 -04:00
parent cfa4664b31
commit 13769a7fcb

View File

@ -88,6 +88,6 @@ export class CipherView implements View {
} else if (this.login.password == null || this.login.password === '') {
return null;
}
return this.login.passwordRevisionDate != null ? this.login.passwordRevisionDate : this.revisionDate;
return this.login.passwordRevisionDate;
}
}