From 555b2ebb3577bef0d5f337c447f55b74e8c72048 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Sat, 7 Oct 2023 14:41:50 -0300 Subject: [PATCH] accordignly => accordingly Signed-off-by: RD WebDesign --- scripts/pi-hole/js/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/js/settings.js b/scripts/pi-hole/js/settings.js index c2c342fd..6922cdbb 100644 --- a/scripts/pi-hole/js/settings.js +++ b/scripts/pi-hole/js/settings.js @@ -107,12 +107,12 @@ function saveSettings() { value = value === "" ? [] : value.split("\n"); } - // If this is an integer number, parse it accordignly + // If this is an integer number, parse it accordingly if ($(this).data("type") === "integer") { value = parseInt(value, 10); } - // If this is a floating point value, parse it accordignly + // If this is a floating point value, parse it accordingly if ($(this).data("type") === "float") { value = parseFloat(value); }