diff options
| author | bobzel <zzzman@gmail.com> | 2025-04-25 16:02:18 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-04-25 16:02:18 -0400 |
| commit | b60b1863be5ecf987f3d3f2483e28e74f634853f (patch) | |
| tree | 9b329b14949045e495b387bf6cf68fc2e2234772 /src/client/views/search | |
| parent | 10bd1bd27df3347ec7d50d8c49c1a65730db96a6 (diff) | |
fixed face collection to show up. fixed pasting text dirextly into freeformview to create docs properly. also fixed paste to match source text styling better. fixed copying out of pdf. fixed formatting of gpt (()) calls from text box by using paste handling code.
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/FaceRecognitionHandler.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/FaceRecognitionHandler.tsx b/src/client/views/search/FaceRecognitionHandler.tsx index cb837e3ab..3ad5bc844 100644 --- a/src/client/views/search/FaceRecognitionHandler.tsx +++ b/src/client/views/search/FaceRecognitionHandler.tsx @@ -43,7 +43,7 @@ export class FaceRecognitionHandler { * Loads an image */ private static loadImage = (imgUrl: ImageField): Promise<HTMLImageElement> => { - const [name, type] = ImageCastToNameType(imgUrl.url.href); + const [name, type] = ImageCastToNameType(imgUrl); const imageURL = `${name}_o.${type}`; return new Promise((resolve, reject) => { |
