mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
autofill card expiration
This commit is contained in:
@@ -195,6 +195,14 @@ angular
|
||||
}
|
||||
});
|
||||
|
||||
$scope.formatYear = function (year) {
|
||||
if (year.length == 2) {
|
||||
return '20' + year;
|
||||
}
|
||||
|
||||
return year;
|
||||
};
|
||||
|
||||
function totpUpdateCode() {
|
||||
if ($scope.cipher.type !== constantsService.cipherType.login || !$scope.cipher.login.totp) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user