Skip to content

Commit d3fd6b9

Browse files
Merge pull request #49210 from nextcloud/fix/rtl-regession
2 parents e38ea33 + 30f426a commit d3fd6b9

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

apps/files/src/components/FileEntry/FileEntryName.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@
2626
:aria-hidden="isRenaming"
2727
class="files-list__row-name-link"
2828
data-cy-files-list-row-name-link
29-
v-bind="linkTo.params"
30-
dir="auto">
29+
v-bind="linkTo.params">
3130
<!-- Filename -->
32-
<span class="files-list__row-name-text">
31+
<span class="files-list__row-name-text" dir="auto">
3332
<!-- Keep the filename stuck to the extension to avoid whitespace rendering issues-->
3433
<span class="files-list__row-name-" v-text="basename" />
3534
<span class="files-list__row-name-ext" v-text="extension" />

apps/files/src/components/FilesListVirtual.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ export default defineComponent({
641641
flex: 1 1 auto;
642642
643643
button.files-list__row-name-link {
644-
display: contents;
644+
display: flex;
645645
align-items: center;
646646
text-align: start;
647647
// Fill cell height and width

dist/files-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)