From c1e3f47f7d83b5b24297f7b134ba30586cdea0dc Mon Sep 17 00:00:00 2001 From: Oscar Beaumont Date: Thu, 11 Apr 2024 13:21:22 +0800 Subject: [PATCH] `size` ordering for ephemeral locations (#2311) --- interface/app/$libraryId/Explorer/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/app/$libraryId/Explorer/store.ts b/interface/app/$libraryId/Explorer/store.ts index cb53e348e..b4e114dbe 100644 --- a/interface/app/$libraryId/Explorer/store.ts +++ b/interface/app/$libraryId/Explorer/store.ts @@ -168,7 +168,7 @@ export const objectOrderingKeysSchema = z.union([ export const nonIndexedPathOrderingSchema = z.union([ z.literal('name').describe('Name'), - // z.literal('sizeInBytes').describe('Size'), + z.literal('sizeInBytes').describe('Size'), z.literal('dateCreated').describe('Date Created'), z.literal('dateModified').describe('Date Modified') ]);