Skip to content

Commit

Permalink
refine display
Browse files Browse the repository at this point in the history
  • Loading branch information
Jicheng Lu committed Sep 27, 2024
1 parent 1a91da2 commit ed52b69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/scss/custom/pages/_chat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
background-color: rgba($primary, 0.1);
border-radius: 8px 8px 8px 0px;
overflow: hidden;
width: fit-content;
width: inherit;

.conversation-name {
font-weight: $font-weight-semibold;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<div class="wrappable fw-bold text-primary">
{'Score:'}
</div>
<div class="wrappable">{`${(item.score * 100).toFixed(4)}%`}</div>
<div class="wrappable">{`${item.score.toFixed(6)}`}</div>
</li>
{/if}
</ul>
Expand Down

0 comments on commit ed52b69

Please sign in to comment.