From b372131978a7df88d8be1ef7046d23154990d678 Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Fri, 29 Aug 2025 19:50:36 +0700 Subject: [PATCH] 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. --- application/src/components/ssl-domain/SSLCertificatesTable.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/src/components/ssl-domain/SSLCertificatesTable.tsx b/application/src/components/ssl-domain/SSLCertificatesTable.tsx index a1e5008..ab5ed6e 100644 --- a/application/src/components/ssl-domain/SSLCertificatesTable.tsx +++ b/application/src/components/ssl-domain/SSLCertificatesTable.tsx @@ -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, });