diff --git a/src/public/js/ui/alertManagementModal.js b/src/public/js/ui/alertManagementModal.js index 258cc3708..87216f4b9 100644 --- a/src/public/js/ui/alertManagementModal.js +++ b/src/public/js/ui/alertManagementModal.js @@ -3126,6 +3126,17 @@ PulseApp.ui.alertManagementModal = (() => { class="w-full px-3 py-2 text-sm border border-gray-300 dark:border-gray-600 rounded-md bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-blue-500 focus:border-blue-500"> +
+ + +
+ ${multipleThresholds ? `` : ''}
@@ -3677,6 +3688,7 @@ ${isEditing ? 'Update Alert' : 'Create Alert'} // Build alert configuration const alertConfig = { name: formData.get('alertName'), + description: formData.get('alertDescription') || '', targetType: formData.get('targetType'), specificTarget: formData.get('specificTarget'), thresholds: thresholds, // Use array of thresholds instead of single values