Fix syntax error: Add missing closing brace for else block

This commit is contained in:
Chuck
2026-01-05 14:38:32 -05:00
parent e0fff2c3f2
commit f7d77de924

View File

@@ -3066,6 +3066,7 @@ function generateFieldHtml(key, prop, value, prefix = '') {
<p class="text-sm text-gray-600 mt-1">Enter values separated by commas</p>
`;
}
}
} else if (prop.enum) {
html += `<select id="${fullKey}" name="${fullKey}" class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm bg-white text-black">`;
prop.enum.forEach(option => {