Skip to content

Commit

Permalink
Fix naming issue
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Jul 20, 2023
1 parent f208c36 commit 857877f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions photon-client/src/views/DashboardView.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { computed } from "vue";
import CamerasCard from "@/components/dashboard/CamerasCard.vue";
import PipelineConfigCard from "@/components/dashboard/CameraAndPipelineSelectCard.vue";
import CameraAndPipelineSelectCard from "@/components/dashboard/CameraAndPipelineSelectCard.vue";
import StreamConfigCard from "@/components/dashboard/StreamConfigCard.vue";
import OperationConfigCard from "@/components/dashboard/PipelineConfigCard.vue";
import PipelineConfigCard from "@/components/dashboard/PipelineConfigCard.vue";
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
import { useStateStore } from "@/stores/StateStore";
Expand Down Expand Up @@ -60,13 +60,13 @@ const cameraViewType = computed<number[]>({
style="display: flex; flex-direction: column"
align-self="stretch"
>
<PipelineConfigCard style="height: 50%; display: flex; flex-direction: column" />
<CameraAndPipelineSelectCard style="height: 50%; display: flex; flex-direction: column" />
<StreamConfigCard
v-model="cameraViewType"
style="height: 50%; display: flex; flex-direction: column"
/>
</v-col>
</v-row>
<OperationConfigCard />
<PipelineConfigCard />
</v-container>
</template>

0 comments on commit 857877f

Please sign in to comment.