diff --git a/.github/README/desktop.png b/.github/README/Screenshot 2025-05-25 at 20.20.14.png similarity index 100% rename from .github/README/desktop.png rename to .github/README/Screenshot 2025-05-25 at 20.20.14.png diff --git a/components/app/windows/news.vue b/components/app/windows/news.vue index 9ec080c..05e9135 100644 --- a/components/app/windows/news.vue +++ b/components/app/windows/news.vue @@ -56,13 +56,17 @@ const checks = async (title: string) => { const getCheckResult = (title: string) => { return checkResults.value.get(title); }; -watch(contentArray, async (newContent) => { - for (const item of newContent) { - if (item.title) { - await checks(item.title); +watch( + contentArray, + async (newContent) => { + for (const item of newContent) { + if (item.title) { + await checks(item.title); + } } - } -}, { immediate: true }); + }, + { immediate: true }, +);