fix: hide label for twilio/whatsapp settings

This commit is contained in:
Shariq Ansari 2024-06-20 15:51:49 +05:30
parent e9010abe20
commit 83699ae619

View File

@ -72,6 +72,7 @@ const sections = computed(() => {
if (fieldsData[0].type !== 'Section Break') { if (fieldsData[0].type !== 'Section Break') {
_sections.push({ _sections.push({
label: 'General', label: 'General',
hideLabel: true,
columns: 1, columns: 1,
fields: [], fields: [],
}) })
@ -80,6 +81,7 @@ const sections = computed(() => {
if (field.type === 'Section Break') { if (field.type === 'Section Break') {
_sections.push({ _sections.push({
label: field.value, label: field.value,
hideLabel: true,
columns: 1, columns: 1,
fields: [], fields: [],
}) })