Use thumbnails instead of review images for search (#12381)

This commit is contained in:
Nicolas Mowen
2024-07-10 16:01:31 -06:00
parent dd7fd16b69
commit feb2c9fc62
4 changed files with 18 additions and 15 deletions

View File

@@ -1,3 +1,5 @@
type SearchSource = "thumbnail" | "description";
export type SearchResult = {
id: string;
camera: string;
@@ -9,6 +11,7 @@ export type SearchResult = {
sub_label?: string;
thumb_path?: string;
zones: string[];
search_source: SearchSource;
};
export type SearchFilter = {