Skip to content

Commit

Permalink
Merge pull request #4288 from akolson/fix-incorrectly-truncated-chann…
Browse files Browse the repository at this point in the history
…el-titles

Fixes incorrectly truncated channel titles in 'Channel/source' and 'Language' dropdowns
  • Loading branch information
marcellamaki authored Sep 22, 2023
2 parents b24c843 + 1f932f7 commit 32bd214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<template #item="{ item }">
<VTooltip bottom lazy>
<template #activator="{ on }">
<span class="text-truncate" v-on="on">{{ languageText(item) }}</span>
<span class="text-truncate" dir="auto" v-on="on">{{ languageText(item) }}</span>
</template>
<span>{{ languageText(item) }}</span>
</VTooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<template #item="{ item, tile }">
<Checkbox v-bind="tile.props" class="ma-0">
<template #label>
<span :class="{ notranslate }" :style="getEllipsisStyle()">
<span :class="{ notranslate }" :style="getEllipsisStyle()" dir="auto">
{{ getText(item) }}
</span>
</template>
Expand Down

0 comments on commit 32bd214

Please sign in to comment.