diff --git a/app/domain/Api/MyApi/v1/Handlers/TermsHandler.php b/app/domain/Api/MyApi/v1/Handlers/TermsHandler.php
index 1286ed3..9597b3d 100755
--- a/app/domain/Api/MyApi/v1/Handlers/TermsHandler.php
+++ b/app/domain/Api/MyApi/v1/Handlers/TermsHandler.php
@@ -24,7 +24,7 @@ class TermsHandler extends Basehandler
{
$translation = $this->em->getTranslationRepository()->findOneBy(['id' => $_GET['translation']]);
$this->termFacade->setDirection($translation->direction);
- $q = $this->termFacade->findByStringFull($_GET['string'], $translation->dictionary, '');
+ $q = $this->termFacade->findByStringFull($_GET['string'], $translation->dictionary, '', mb_strlen($_GET['string']) <= 3 ? false : true);
$terms = $q->getArrayResult();
return new JsonApiResponse(200, ['status' => 'ok', 'terms' => $terms]);
diff --git a/config/common.neon b/config/common.neon
index 46550a2..074ba82 100755
--- a/config/common.neon
+++ b/config/common.neon
@@ -25,6 +25,6 @@ di:
tags: no
tracy:
- showBar: false
+ showBar: true
bar:
- VitePanel
diff --git a/src/scripts/App.vue b/src/scripts/App.vue
index 1d9a561..5b9d850 100644
--- a/src/scripts/App.vue
+++ b/src/scripts/App.vue
@@ -122,7 +122,7 @@
id="mobile-menu-2"
class="bg-yellow-100 md:text-lg flex flex-col w-full px-4 border-b lg:border-r lg:h-fit lg:w-64"
>
-