mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-05 04:03:45 +08:00
Fix spaces in search results [SCI-10678]
This commit is contained in:
parent
486bd33eb4
commit
ed65f06e0c
1 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue