From 27839d3fae5cbc9fd477c4461e8e332b8ac74dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B3=D0=BE=D1=80=D1=8C=20=D0=91=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=83=D1=80=D0=B8=D1=81=D1=82?= Date: Tue, 5 May 2026 22:27:52 +1000 Subject: [PATCH] status --- src/components/Istochnik_section/Istochnik_one_kard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Istochnik_section/Istochnik_one_kard.vue b/src/components/Istochnik_section/Istochnik_one_kard.vue index 6485bcf..a04ce83 100644 --- a/src/components/Istochnik_section/Istochnik_one_kard.vue +++ b/src/components/Istochnik_section/Istochnik_one_kard.vue @@ -47,7 +47,7 @@ const props = defineProps({ source: { type: Object, required: true, - default: () => ({ url: "", promt: "" }), + default: () => ({ url: "", promt: "", status: false}), }, }); @@ -55,7 +55,7 @@ const emit = defineEmits(["sourceStarted", "sourceDeleted"]); const isLoading = ref(false); const isDeleting = ref(false); -const isStatus = ref(!props.source.promt); +const isStatus = ref(props.source.status); const displayUrl = computed({ get: () => props.source.url || "",