From 7ba2a0f0f82db1362236126af7803376ce85b000 Mon Sep 17 00:00:00 2001 From: veryspry Date: Thu, 30 Nov 2023 13:38:47 +0100 Subject: [PATCH] `gravity-forms/gw-prevent-duplicate-selections.js`: Fixed typo in comment. --- gravity-forms/gw-prevent-duplicate-selections.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gravity-forms/gw-prevent-duplicate-selections.js b/gravity-forms/gw-prevent-duplicate-selections.js index efe86205d..8d931b828 100644 --- a/gravity-forms/gw-prevent-duplicate-selections.js +++ b/gravity-forms/gw-prevent-duplicate-selections.js @@ -74,7 +74,7 @@ function getChangedOptionElFromSelect( $select, selected ) { const prevVal = gpadvsPreviousValues[selectId] || null; // Cache the current value so that we can compare against it on - // on the next change event to determine whih option was changed. + // on the next change event to determine which option was changed. gpadvsPreviousValues[selectId] = val; let changedOptVal;