mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
[PM-3100] Fixes imports of "reduced" psono data (#5859)
* Fixes imports of "reduced" psono data * Fix typo in file name --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
@@ -131,7 +131,7 @@ export class PsonoJsonImporter extends BaseImporter implements Importer {
|
||||
this.processKvp(
|
||||
cipher,
|
||||
"website_password_auto_submit",
|
||||
entry.website_password_auto_submit.toString(),
|
||||
entry.website_password_auto_submit?.toString(),
|
||||
FieldType.Boolean
|
||||
);
|
||||
|
||||
|
||||
@@ -38,15 +38,15 @@ export type PsonoEntryTypes =
|
||||
|
||||
export interface WebsitePasswordEntry extends RecordBase {
|
||||
type: "website_password";
|
||||
autosubmit: boolean;
|
||||
urlfilter: string;
|
||||
autosubmit?: boolean;
|
||||
urlfilter?: string;
|
||||
website_password_title: string;
|
||||
website_password_url: string;
|
||||
website_password_username: string;
|
||||
website_password_password: string;
|
||||
website_password_notes: string;
|
||||
website_password_auto_submit: boolean;
|
||||
website_password_url_filter: string;
|
||||
website_password_auto_submit?: boolean;
|
||||
website_password_url_filter?: string;
|
||||
}
|
||||
|
||||
export interface PsonoEntry {
|
||||
|
||||
Reference in New Issue
Block a user