From 18840647ef8fce01ea40d42fb03f5d7ce7eb6e7c Mon Sep 17 00:00:00 2001 From: ator-dev Date: Wed, 8 May 2024 20:48:50 +0100 Subject: [PATCH] Fix association of match modes in popup - Fetch "Stemming" match mode using "stem" and "Whole Words" using "whole" (instead of these being swapped) --- src/pages/popup-build.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/popup-build.ts b/src/pages/popup-build.ts index 28e2967..7531507 100644 --- a/src/pages/popup-build.ts +++ b/src/pages/popup-build.ts @@ -415,8 +415,8 @@ const loadPopup = (() => { { className: "matching", rows: [ - getMatchModeInteractionInfo("whole", "Stemming"), - getMatchModeInteractionInfo("stem", "Whole Words"), + getMatchModeInteractionInfo("stem", "Stemming"), + getMatchModeInteractionInfo("whole", "Whole Words"), getMatchModeInteractionInfo("case", "Case Sensitive"), getMatchModeInteractionInfo("diacritics", "Diacritics Insensitive"), getMatchModeInteractionInfo("regex", "Regular Expression"),