forked from trent_larson/crowd-funder-for-time-pwa
change dateCreated to a string (from a Date object, which persists as a Date object)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
export type Account = {
|
||||
id?: number; // auto-generated by Dexie
|
||||
dateCreated: Date;
|
||||
dateCreated: string;
|
||||
derivationPath: string;
|
||||
identity: string;
|
||||
publicKeyHex: string;
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -79,7 +79,7 @@ export default class ImportAccountView extends Vue {
|
||||
const num_accounts = await db.accounts.count();
|
||||
if (num_accounts === 0) {
|
||||
await db.accounts.add({
|
||||
dateCreated: new Date(),
|
||||
dateCreated: new Date().toISOString(),
|
||||
derivationPath: this.derivationPath,
|
||||
identity: JSON.stringify(newId),
|
||||
mnemonic: mne,
|
||||
|
||||
Reference in New Issue
Block a user