Remove ability to right click on elements inside of face popup

This commit is contained in:
Nicolas Mowen 2025-11-12 07:17:38 -07:00
parent 29a464f2b5
commit 341ffc194b
2 changed files with 2 additions and 6 deletions

View File

@ -398,11 +398,7 @@ export function GroupedClassificationCard({
threshold={threshold}
selected={false}
i18nLibrary={i18nLibrary}
onClick={(data, meta) => {
if (meta || selectedItems.length > 0) {
onClick(data);
}
}}
onClick={() => {}}
>
{children?.(data)}
</ClassificationCard>

View File

@ -70,7 +70,7 @@ export default function StorageMetrics({
]);
const earliestDate = useMemo(() => {
const keys = Object.keys(recordingsSummary || {}).sort();
const keys = Object.keys(recordingsSummary || {});
return keys.length
? new TZDate(keys[0] + "T00:00:00", timezone).getTime() / 1000
: null;