change dateCreated to a string (from a Date object, which persists as a Date object)

This commit is contained in:
2023-03-18 20:46:59 -06:00
parent 59d621efc1
commit b3cdcb010a
3 changed files with 3 additions and 3 deletions

View File

@@ -247,7 +247,7 @@ export default class AccountViewView extends Vue {
this.derivationPath
);
await db.accounts.add({
dateCreated: new Date(),
dateCreated: new Date().toISOString(),
derivationPath: this.derivationPath,
identity: JSON.stringify(newId),
mnemonic: this.mnemonic,