mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-10 00:21:27 +01:00
autofill exp year when it is a select list
This commit is contained in:
parent
bbad22244c
commit
d69862c46d
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit b01709240e4fc0674caea4edfebe5e46249c2bd2
|
||||
Subproject commit 9e97b1e65641452ec8ae2d2e1fca4bfddcd769b7
|
@ -509,7 +509,23 @@ export default class AutofillService implements AutofillServiceInterface {
|
||||
|
||||
if (fillFields.expYear && this.hasValue(card.expYear)) {
|
||||
let expYear: string = card.expYear;
|
||||
if (this.fieldAttrsContain(fillFields.expYear, 'yyyy') || fillFields.expYear.maxLength === 4) {
|
||||
if (fillFields.expYear.selectInfo && fillFields.expYear.selectInfo.options) {
|
||||
for (let i = 0; i < fillFields.expYear.selectInfo.options.length; i++) {
|
||||
const o: [string, string] = fillFields.expYear.selectInfo.options[i];
|
||||
if (o[0] === card.expYear) {
|
||||
expYear = o[1];
|
||||
break;
|
||||
}
|
||||
const colonIndex = o[1].indexOf(':');
|
||||
if (colonIndex > -1 && o[1].length > colonIndex + 1) {
|
||||
const val = o[1].substring(colonIndex + 2);
|
||||
if (val != null && val.trim() !== '' && val === card.expYear) {
|
||||
expYear = o[1];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (this.fieldAttrsContain(fillFields.expYear, 'yyyy') || fillFields.expYear.maxLength === 4) {
|
||||
if (expYear.length === 2) {
|
||||
expYear = '20' + expYear;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user