Skip to content

Commit

Permalink
Merge pull request #197 from ator-dev/keyword_list-match_modes-reorder
Browse files Browse the repository at this point in the history
Reorder term match modes in keyword lists
  • Loading branch information
ator-dev authored Oct 15, 2024
2 parents c50f2ce + 136f85e commit 4dcd4f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/popup.mts
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,10 @@ const loadPopup = (() => {
{
className: "matching",
rows: [
getMatchModeInteractionInfo("stem", "Stemming"),
getMatchModeInteractionInfo("whole", "Whole Words"),
getMatchModeInteractionInfo("case", "Case Sensitive"),
getMatchModeInteractionInfo("diacritics", "Diacritic Sensitive"),
getMatchModeInteractionInfo("whole", "Whole Words"),
getMatchModeInteractionInfo("stem", "Stemming"),
getMatchModeInteractionInfo("diacritics", "Diacritics Insensitive"),
getMatchModeInteractionInfo("regex", "Regular Expression"),
],
},
Expand Down

0 comments on commit 4dcd4f8

Please sign in to comment.