fix datetime display issues (again) (#324)

This commit is contained in:
Hayden 2023-02-27 19:52:56 -09:00 committed by GitHub
parent 025521431e
commit cf536393f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 46 additions and 14 deletions

View file

@ -246,6 +246,7 @@
name: "Warranty Expires",
text: item.value?.warrantyExpires || "",
type: "date",
date: true,
});
}
@ -280,6 +281,7 @@
name: "Purchase Date",
text: item.value?.purchaseTime || "",
type: "date",
date: true,
},
];
});
@ -306,6 +308,7 @@
name: "Sold At",
text: item.value?.soldTime || "",
type: "date",
date: true,
},
];
});