Skip to content

Commit

Permalink
#1127 fix trucating of ids
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasBuchfink committed Feb 28, 2024
1 parent cda1f2a commit 3e99678
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ function IdsFilter(props: { clearFunction: any }) {
class="small"
style={{ "--show-delay": "1s" }}
>
<sl-option prop:value={id} class="ids-filter text-ellipsis">
<sl-option prop:value={id} class="ids-filter">
{id}
</sl-option>
</sl-tooltip>
Expand Down
1 change: 1 addition & 0 deletions inlang/source-code/editor/src/renderer/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ sl-select.ids-filter::part(tags) {
}

sl-option.ids-filter::part(label) {
display: inline;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down

0 comments on commit 3e99678

Please sign in to comment.