diff --git a/.gitignore b/.gitignore index 6a3ddc0b6f..a709d075e1 100644 --- a/.gitignore +++ b/.gitignore @@ -156,3 +156,4 @@ photon-client/playwright-report/ photon-client/blob-report/ photon-client/playwright/.cache/ photon-client/playwright/.auth/ +photon-client/package-lock.json diff --git a/photon-client/src/components/dashboard/ConfigOptions.vue b/photon-client/src/components/dashboard/ConfigOptions.vue index be8e017233..8fe5d6fcbe 100644 --- a/photon-client/src/components/dashboard/ConfigOptions.vue +++ b/photon-client/src/components/dashboard/ConfigOptions.vue @@ -95,7 +95,7 @@ const tabGroups = computed(() => { tabGroup.filter( (tabConfig) => !(!allow3d && tabConfig.tabName === "3D") && //Filter out 3D tab any time 3D isn't calibrated - !((!allow3d || isAprilTag || isAruco || isObjectDetection) && tabConfig.tabName === "PnP") && //Filter out the PnP config tab if 3D isn't available, or we're doing AprilTags + !((!allow3d || isAprilTag || isAruco) && tabConfig.tabName === "PnP") && //Filter out the PnP config tab if 3D isn't available, or we're doing AprilTags !((isAprilTag || isAruco || isObjectDetection) && tabConfig.tabName === "Threshold") && //Filter out threshold tab if we're doing AprilTags !((isAprilTag || isAruco || isObjectDetection) && tabConfig.tabName === "Contours") && //Filter out contours if we're doing AprilTags !(!isAprilTag && tabConfig.tabName === "AprilTag") && //Filter out apriltag unless we actually are doing AprilTags diff --git a/photon-client/src/components/dashboard/StreamConfigCard.vue b/photon-client/src/components/dashboard/StreamConfigCard.vue index 38e031e934..f368525230 100644 --- a/photon-client/src/components/dashboard/StreamConfigCard.vue +++ b/photon-client/src/components/dashboard/StreamConfigCard.vue @@ -48,7 +48,6 @@ const processingMode = computed({ :disabled=" !useCameraSettingsStore().hasConnected || !useCameraSettingsStore().isCurrentVideoFormatCalibrated || - useCameraSettingsStore().currentPipelineSettings.pipelineType == PipelineType.ObjectDetection || useCameraSettingsStore().currentPipelineSettings.pipelineType == PipelineType.ColoredShape " :variant="theme.global.name.value === 'LightTheme' ? 'elevated' : 'outlined'" diff --git a/photon-client/src/components/dashboard/tabs/PnPTab.vue b/photon-client/src/components/dashboard/tabs/PnPTab.vue index 0ec9b5d668..9f8998f767 100644 --- a/photon-client/src/components/dashboard/tabs/PnPTab.vue +++ b/photon-client/src/components/dashboard/tabs/PnPTab.vue @@ -1,7 +1,7 @@