fix(ssl): Ensure edit form saves notification_id and template_id in DB.

- The SSL edit form was not saving the `notification_id` and `template_id` fields to the PB database when re-assigning the Notification Channel and Alert Template.
This commit is contained in:
Tola Leng
2025-08-29 19:50:36 +07:00
parent 5f7c451fc0
commit b372131978
@@ -92,6 +92,8 @@ export const SSLCertificatesTable = () => {
warning_threshold: updatedCertificate.warning_threshold,
expiry_threshold: updatedCertificate.expiry_threshold,
notification_channel: updatedCertificate.notification_channel,
notification_id: updatedCertificate.notification_id,
template_id: updatedCertificate.template_id,
check_interval: updatedCertificate.check_interval,
});