fix: wrong database tab order due to date string conversion (#54)

This commit is contained in:
Khor Shu Heng
2025-02-26 17:18:36 +08:00
committed by GitHub
parent 1d90ea191a
commit 9a1f150adb

View File

@@ -54,7 +54,7 @@ export function useDatabaseViewsSelector (_iidIndex: string, visibleViewIds?: st
const viewsObj = views.toJSON() as Record< const viewsObj = views.toJSON() as Record<
string, string,
{ {
created_at: number; created_at: string;
} }
>; >;
@@ -62,7 +62,7 @@ export function useDatabaseViewsSelector (_iidIndex: string, visibleViewIds?: st
const [, viewA] = a; const [, viewA] = a;
const [, viewB] = b; const [, viewB] = b;
return Number(viewB.created_at) - Number(viewA.created_at); return Date.parse(viewB.created_at) - Date.parse(viewA.created_at);
}); });
setViewIds( setViewIds(