fix: make conferencing provider optional during batch creation

The conferencing_provider Select field defaulted to "Zoom" (first option)
when not explicitly set, causing batch creation to fail with
"Please select a Zoom account for this batch" since no zoom_account
is provided at creation time.
This commit is contained in:
Vaibhav Rathore
2026-02-25 16:56:02 +05:30
parent 559338da59
commit 898a872232
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -483,6 +483,10 @@ const trashBatch = (close) => {
const conferencingOptions = computed(() => {
return [
{
label: '',
value: '',
},
{
label: 'Zoom',
value: 'Zoom',