diff --git a/client/app/components.d.ts b/client/app/components.d.ts index 88eb6f6..7300bc5 100644 --- a/client/app/components.d.ts +++ b/client/app/components.d.ts @@ -22,6 +22,7 @@ declare module 'vue' { PrimeSelect: typeof import('primevue/select')['default'] PrimeSelectButton: typeof import('primevue/selectbutton')['default'] PrimeSlider: typeof import('primevue/slider')['default'] + PrimeTag: typeof import('primevue/tag')['default'] PrimeToast: typeof import('primevue/toast')['default'] PrimeToggleSwitch: typeof import('primevue/toggleswitch')['default'] RouterLink: typeof import('vue-router')['RouterLink'] diff --git a/client/app/components/ClientRow.vue b/client/app/components/ClientRow.vue index 13debd1..5588d75 100644 --- a/client/app/components/ClientRow.vue +++ b/client/app/components/ClientRow.vue @@ -111,7 +111,7 @@ const inputMuted = computed(() => { }) const hasBadges = computed(() => { - return shareConsumers.value.length > 0 + return streaming.value || premuted.value || inputMuted.value || props.client.outputMuted diff --git a/client/app/components/Gallery/Card.vue b/client/app/components/Gallery/Card.vue index 871a491..a9e6a4a 100644 --- a/client/app/components/Gallery/Card.vue +++ b/client/app/components/Gallery/Card.vue @@ -1,19 +1,47 @@