Skip to content

Commit 33d89b4

Browse files
committed
Revert back to img for loading SVG
1 parent 2b95e87 commit 33d89b4

File tree

2 files changed

+2
-207
lines changed

2 files changed

+2
-207
lines changed

photon-client/src/components/app/photon-camera-stream.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import { computed, inject, ref, onBeforeUnmount } from "vue";
33
import { useStateStore } from "@/stores/StateStore";
44
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
5+
import loadingImage from "@/assets/images/loading-transparent.svg";
56
import type { StyleValue } from "vue";
67
import PvIcon from "@/components/common/pv-icon.vue";
78
import type { UiCameraConfiguration } from "@/types/SettingTypes";
8-
import PvLoading from "@/components/common/pv-loading.vue";
99
1010
const props = defineProps<{
1111
streamType: "Raw" | "Processed";
@@ -92,7 +92,7 @@ onBeforeUnmount(() => {
9292

9393
<template>
9494
<div class="stream-container" :style="containerStyle">
95-
<pv-loading class="stream-loading" />
95+
<img :src="loadingImage" class="stream-loading" />
9696
<img
9797
:id="id"
9898
ref="mjpgStream"

photon-client/src/components/common/pv-loading.vue

Lines changed: 0 additions & 205 deletions
This file was deleted.

0 commit comments

Comments
 (0)