@@ -327,6 +328,7 @@ const clearFailed = () => {
emits('deleteItem', 'completed', keys);
}
+
const setIcon = (item) => {
if (item.status === 'finished' && item.is_live) {
return 'fa-solid fa-globe';
diff --git a/frontend/src/components/Page-Downloading.vue b/frontend/src/components/Page-Downloading.vue
index ea6c1355..59e52e66 100644
--- a/frontend/src/components/Page-Downloading.vue
+++ b/frontend/src/components/Page-Downloading.vue
@@ -53,10 +53,10 @@
-
+
- {{ capitalize(item.status) }}
+ Live Streaming
+ {{ capitalize(item.status) }}
@@ -157,6 +157,18 @@ const hasSelected = computed(() => selectedElms.value.length > 0)
const hasQueuedItems = computed(() => Object.keys(props.queue)?.length > 0)
const getTotal = computed(() => Object.keys(props.queue)?.length);
+const setIcon = (item) => {
+ if (item.status === 'downloading' && item.is_live) {
+ return 'fa-solid fa-globe';
+ }
+
+ if (item.status === 'downloading') {
+ return 'fa-solid fa-circle-check';
+ }
+
+ return 'fa-solid fa-spinner fa-spin';
+}
+
const ETAPipe = value => {
if (value === null || 0 === value) {
return 'Live';