From ee3d4acb58b1c47f72b99196d08c3d476269cbe4 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 12 May 2024 12:39:16 -0600 Subject: [PATCH] fix cropping problem where long images go off the screen --- src/components/PhotoDialog.vue | 8 +++++--- src/views/SharedPhotoView.vue | 6 ------ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/components/PhotoDialog.vue b/src/components/PhotoDialog.vue index 93e8308..f828fad 100644 --- a/src/components/PhotoDialog.vue +++ b/src/components/PhotoDialog.vue @@ -29,8 +29,7 @@
diff --git a/src/views/SharedPhotoView.vue b/src/views/SharedPhotoView.vue index 9230622..721b15b 100644 --- a/src/views/SharedPhotoView.vue +++ b/src/views/SharedPhotoView.vue @@ -165,12 +165,6 @@ export default class SharedPhotoView extends Vue { ); formData.append("claimType", imageType); - console.log( - "Sending image to server", - formData, - headers, - DEFAULT_IMAGE_API_SERVER + "/image", - ); const response = await axios.post( DEFAULT_IMAGE_API_SERVER + "/image", formData,