We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6314587 commit c6af85fCopy full SHA for c6af85f
src/utils/componentStore.ts
@@ -588,6 +588,8 @@ export const getAllComponentFilesFromList = async (listName: string) => {
588
const componentFiles = new Map<string, ComponentFileEntry>();
589
await componentListDb.iterate<ComponentFileEntry, void>(
590
(fileEntry, fileName) => {
591
+ fileEntry.creationTime = new Date(fileEntry.creationTime);
592
+ fileEntry.modificationTime = new Date(fileEntry.modificationTime);
593
componentFiles.set(fileName, fileEntry);
594
},
595
);
0 commit comments