fix(dashboard): add missing getPlatformColor helper for platform health bars

The platform-health row icon binds to getPlatformColor(row.platform) but the
helper was only present in Sources.vue/Subscriptions.vue/Credentials.vue/
Settings.vue — not copied into Dashboard.vue when the template was introduced,
so the icons next to each platform row rendered in Vuetify's default color.
Also collapse the double blank line left where sourcesWithErrors was removed.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-04-17 23:50:09 -04:00
parent f809fa552d
commit 42192e82be
+12 -1
View File
@@ -383,7 +383,6 @@ const failingSources = computed(() => {
const totalFailingCount = computed(() => failingSources.value.length) const totalFailingCount = computed(() => failingSources.value.length)
const failedCount = computed(() => stats.value?.active_failed || 0) const failedCount = computed(() => stats.value?.active_failed || 0)
const activeDownloadsCount = computed(() => const activeDownloadsCount = computed(() =>
(stats.value?.queued || 0) + (stats.value?.running || 0) (stats.value?.queued || 0) + (stats.value?.running || 0)
@@ -573,6 +572,18 @@ function getPlatformIcon(platform) {
return icons[platform] || 'mdi-web' return icons[platform] || 'mdi-web'
} }
function getPlatformColor(platform) {
const colors = {
patreon: 'red',
subscribestar: 'amber',
hentaifoundry: 'purple',
discord: 'indigo',
pixiv: 'blue',
deviantart: 'green',
}
return colors[platform] || 'grey'
}
function getStatusColor(status) { function getStatusColor(status) {
const colors = { const colors = {
completed: 'success', completed: 'success',