From c3d7b6a9896484d20e6124f3522106b2640ce4dd Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 06:00:51 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/pages/EditMonitor.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/EditMonitor.vue b/src/pages/EditMonitor.vue index 4dea455a5..0759ce70e 100644 --- a/src/pages/EditMonitor.vue +++ b/src/pages/EditMonitor.vue @@ -3325,7 +3325,11 @@ message HealthCheckResponse { // 1. Loading monitor data from server (isLoadingMonitor flag) // 2. User explicitly edited the interval value (editedValue flag) // This respects the user's choice of low intervals they've confirmed - if (!this.isLoadingMonitor && !this.lowIntervalConfirmation.editedValue && this.monitor.interval < calculatedPingInterval) { + if ( + !this.isLoadingMonitor && + !this.lowIntervalConfirmation.editedValue && + this.monitor.interval < calculatedPingInterval + ) { this.monitor.interval = calculatedPingInterval; // Notify the user that the interval has been automatically adjusted