From 87962a3723189c1cfa53b9f9ed21196eba50a453 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 28 Dec 2021 13:48:37 -0500 Subject: [PATCH] Invert Importance so that Normal is the auto-selected first value --- web/skins/classic/views/monitor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/skins/classic/views/monitor.php b/web/skins/classic/views/monitor.php index 657c2ce8c..fe3cc9950 100644 --- a/web/skins/classic/views/monitor.php +++ b/web/skins/classic/views/monitor.php @@ -1286,9 +1286,9 @@ echo htmlSelect('newMonitor[ReturnLocation]', $return_options, $monitor->ReturnL translate('Not important'), - 'Less'=>translate('Less important'), 'Normal'=>translate('Normal') + 'Less'=>translate('Less important'), + 'Not'=>translate('Not important'), ), $monitor->Importance()); ?>