Fix bugs and add direction of translation

This commit is contained in:
2025-02-02 17:00:26 +01:00
parent 52eef8dbd4
commit 47e1b47028
3 changed files with 134 additions and 100 deletions

View File

@@ -47,7 +47,7 @@ class TermServiceImpl : TermService {
if (type == SearchType.EXACT)
TermDao.find { Terms.string2 eq s }.map { it.toFullModel() }
else
TermDao.find { Terms.string1 like s }.map { it.toFullModel() }
TermDao.find { Terms.string2 like s }.map { it.toFullModel() }
}
}