Skip to content

Commit

Permalink
Search box bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
simjanos-dev committed Feb 13, 2024
1 parent d2fe8c9 commit dc5cf9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/Text/VocabularySearchBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div id="search-results" class="border rounded-lg">

<!-- DeepL translation -->
<div :class="{'search-result': true, 'disabled': deeplSearchResult.length || deeplSearchResult === 'DeepL error' || deeplSearchResult == 'loading'}">
<div :class="{'search-result': true, 'disabled': !deeplSearchResult.length || deeplSearchResult === 'DeepL error' || deeplSearchResult == 'loading'}">
<div class="search-result-title rounded px-2" style="background-color: #92B9E2">
{{ searchField }} <div class="dictionary">DeepL</div>
</div>
Expand Down

0 comments on commit dc5cf9c

Please sign in to comment.