BUGFIX add MATCH_NONE to tag matching options

This commit is contained in:
konrad.lys@eu.equinix.com
2023-05-29 17:30:28 +02:00
parent f46ae73f49
commit 4f52778b23
5 changed files with 15 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ String translateMatchingAlgorithmDescription(
return S.of(context)!.documentContainsAWordSimilarToThisWord;
case MatchingAlgorithm.auto:
return S.of(context)!.learnMatchingAutomatically;
case MatchingAlgorithm.none:
return S.of(context)!.disableMatching;
}
}
@@ -39,5 +41,7 @@ String translateMatchingAlgorithmName(
return S.of(context)!.fuzzy;
case MatchingAlgorithm.auto:
return S.of(context)!.auto;
case MatchingAlgorithm.none:
return S.of(context)!.none;
}
}