From 8b9a198d0be7b844eb983dc4f950336a91dfc630 Mon Sep 17 00:00:00 2001 From: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com> Date: Wed, 11 Oct 2023 18:31:50 -0400 Subject: [PATCH] [photon-client] Fix imports and simplify process of updated pipeline settings in store (#946) * Update CameraSettingsStore.ts * Fix imports --- photon-client/src/assets/images/loading.svg | 3 ++- photon-client/src/assets/images/logoLarge.svg | 4 +++- photon-client/src/assets/images/logoSmall.svg | 4 +++- photon-client/src/components/app/photon-3d-visualizer.vue | 4 ++-- photon-client/src/components/app/photon-log-view.vue | 2 +- .../src/components/cameras/CameraCalibrationCard.vue | 2 +- photon-client/src/stores/settings/CameraSettingsStore.ts | 7 ++----- photon-client/src/stores/settings/GeneralSettingsStore.ts | 4 ++-- photon-client/src/types/WebsocketDataTypes.ts | 3 +-- 9 files changed, 17 insertions(+), 16 deletions(-) diff --git a/photon-client/src/assets/images/loading.svg b/photon-client/src/assets/images/loading.svg index 7edbc87ee4..a471c1d0f7 100644 --- a/photon-client/src/assets/images/loading.svg +++ b/photon-client/src/assets/images/loading.svg @@ -1,4 +1,5 @@ - + diff --git a/photon-client/src/assets/images/logoLarge.svg b/photon-client/src/assets/images/logoLarge.svg index b682db7603..d6c2247bf0 100644 --- a/photon-client/src/assets/images/logoLarge.svg +++ b/photon-client/src/assets/images/logoLarge.svg @@ -1,6 +1,8 @@ - + diff --git a/photon-client/src/assets/images/logoSmall.svg b/photon-client/src/assets/images/logoSmall.svg index 88643de263..f528a70023 100644 --- a/photon-client/src/assets/images/logoSmall.svg +++ b/photon-client/src/assets/images/logoSmall.svg @@ -1,6 +1,8 @@ - + diff --git a/photon-client/src/components/app/photon-3d-visualizer.vue b/photon-client/src/components/app/photon-3d-visualizer.vue index e723eecd2c..caa3070ccb 100644 --- a/photon-client/src/components/app/photon-3d-visualizer.vue +++ b/photon-client/src/components/app/photon-3d-visualizer.vue @@ -4,18 +4,18 @@ import { onBeforeUnmount, onMounted, watchEffect } from "vue"; import { ArrowHelper, BoxGeometry, + Color, ConeGeometry, Mesh, MeshNormalMaterial, + type Object3D, PerspectiveCamera, Quaternion, Scene, Vector3, - Color, WebGLRenderer } from "three"; import { TrackballControls } from "three/examples/jsm/controls/TrackballControls"; -import { type Object3D } from "three"; const props = defineProps<{ targets: PhotonTarget[]; diff --git a/photon-client/src/components/app/photon-log-view.vue b/photon-client/src/components/app/photon-log-view.vue index 88ec22e1ae..e5442bc28c 100644 --- a/photon-client/src/components/app/photon-log-view.vue +++ b/photon-client/src/components/app/photon-log-view.vue @@ -1,5 +1,5 @@