Fix spaces in search results [SCI-10678]

This commit is contained in:
Anton 2024-05-07 10:45:07 +02:00
parent 486bd33eb4
commit ed65f06e0c

View file

@ -6,10 +6,10 @@
</div> </div>
</template> </template>
<template v-else> <template v-else>
<div class="truncate"> <div class="truncate whitespace-pre">
{{ text.slice(0, endCharacters * -1) }} {{ text.slice(0, endCharacters * -1) }}
</div> </div>
<div class="shrink-0"> <div class="shrink-0 whitespace-pre">
{{ text.slice(text.length - endCharacters) }} {{ text.slice(text.length - endCharacters) }}
</div> </div>
</template> </template>