Fix include case

This commit is contained in:
Girish Ramakrishnan
2025-09-30 19:02:07 +02:00
parent edcffd3417
commit 6bd8e81eae
3 changed files with 3 additions and 2 deletions
@@ -29,7 +29,7 @@ const formError = ref({});
const busy = ref(false);
const enableForUpdates = ref(false);
const provider = ref('');
const includeExclude = ref('everything'); // or exclude, everything
const includeExclude = ref('everything'); // or exclude, include
const contentOptions = ref([]);
const contentInclude = ref([]);
const contentExclude = ref([]);
@@ -129,6 +129,7 @@ defineExpose({
includeExclude.value = 'exclude';
contentExclude.value = t.contents.exclude;
} else if (t.contents.include) {
includeExclude.value = 'include';
contentInclude.value = t.contents.include;
}
} else {