Fix include case
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user