status
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-05-05 22:27:52 +10:00
parent 2e7d6ac7c1
commit 27839d3fae

View File

@@ -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 || "",