Skip to content

Commit

Permalink
Fix dashboard src naming
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Jul 21, 2023
1 parent 9498b0a commit b6d12ba
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import type { Component } from "vue";
import { computed, getCurrentInstance, onBeforeUpdate, ref } from "vue";
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
import { useStateStore } from "@/stores/StateStore";
import InputTab from "@/components/dashboard/PipelineConfigTabs/InputTab.vue";
import ThresholdTab from "@/components/dashboard/PipelineConfigTabs/ThresholdTab.vue";
import ContoursTab from "@/components/dashboard/PipelineConfigTabs/ContoursTab.vue";
import AprilTagTab from "@/components/dashboard/PipelineConfigTabs/AprilTagTab.vue";
import ArucoTab from "@/components/dashboard/PipelineConfigTabs/ArucoTab.vue";
import OutputTab from "@/components/dashboard/PipelineConfigTabs/OutputTab.vue";
import TargetsTab from "@/components/dashboard/PipelineConfigTabs/TargetsTab.vue";
import PnPTab from "@/components/dashboard/PipelineConfigTabs/PnPTab.vue";
import Map3DTab from "@/components/dashboard/PipelineConfigTabs/Map3DTab.vue";
import InputTab from "@/components/dashboard/tabs/InputTab.vue";
import ThresholdTab from "@/components/dashboard/tabs/ThresholdTab.vue";
import ContoursTab from "@/components/dashboard/tabs/ContoursTab.vue";
import AprilTagTab from "@/components/dashboard/tabs/AprilTagTab.vue";
import ArucoTab from "@/components/dashboard/tabs/ArucoTab.vue";
import OutputTab from "@/components/dashboard/tabs/OutputTab.vue";
import TargetsTab from "@/components/dashboard/tabs/TargetsTab.vue";
import PnPTab from "@/components/dashboard/tabs/PnPTab.vue";
import Map3DTab from "@/components/dashboard/tabs/Map3DTab.vue";
import { WebsocketPipelineType } from "@/types/WebsocketDataTypes";
interface ConfigOption {
Expand Down
2 changes: 1 addition & 1 deletion photon-client/src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { computed } from "vue";
import CamerasCard from "@/components/dashboard/CamerasCard.vue";
import CameraAndPipelineSelectCard from "@/components/dashboard/CameraAndPipelineSelectCard.vue";
import StreamConfigCard from "@/components/dashboard/StreamConfigCard.vue";
import PipelineConfigCard from "@/components/dashboard/PipelineConfigCard.vue";
import PipelineConfigCard from "@/components/dashboard/ConfigOptions.vue";
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
import { useStateStore } from "@/stores/StateStore";
Expand Down

0 comments on commit b6d12ba

Please sign in to comment.