mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
fix implicit any
This commit is contained in:
parent
06e412a095
commit
e9518e104e
@ -42,7 +42,7 @@ export class OnePassword1PifImporter extends BaseImporter implements Importer {
|
||||
this.parseFields(item.secureContents.fields, cipher, 'designation', 'value', 'name');
|
||||
}
|
||||
if (item.secureContents.sections != null) {
|
||||
item.secureContents.sections.forEach((section) => {
|
||||
item.secureContents.sections.forEach((section: any) => {
|
||||
if (section.fields != null) {
|
||||
this.parseFields(section.fields, cipher, 'n', 'v', 't');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user