Skip to content

Commit 1b63e9e

Browse files
committed
Merge remote-tracking branch 'upstream/pull/6033'
2 parents 9517ee3 + f0bc5d0 commit 1b63e9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/assets/stylesheets/common.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ tr.turn {
598598
@extend :hover;
599599
}
600600

601-
a.stretched-link > span, a:not(.stretched-link), [title] {
601+
a.stretched-link > bdi, a:not(.stretched-link), [title] {
602602
position: relative;
603603
z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
604604
}

app/views/browse/_common_details.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#<%= link_to_unless_current common_details.version, :controller => "old_#{@type.pluralize}", :action => :show, :version => common_details.version %>
88
</h4>
99

10-
<p class="fs-6 overflow-x-auto">
10+
<p class="fs-6 overflow-x-auto" dir="auto">
1111
<% if common_details.changeset.tags["comment"].present? %>
1212
<%= linkify(common_details.changeset.tags["comment"]) %>
1313
<% else %>

app/views/changesets/_changeset.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<%= tag.li :id => "changeset_#{changeset.id}", :data => { :changeset => changeset_data(changeset) }, :class => "list-group-item list-group-item-action" do %>
22
<p class="fs-6 text-truncate text-wrap mb-0">
33
<a class="changeset_id link-body-emphasis stretched-link" href="<%= changeset_path(changeset) %>">
4-
<span><%= changeset.tags["comment"].to_s.presence || t("browse.no_comment") %></span>
4+
<bdi><%= changeset.tags["comment"].to_s.presence || t("browse.no_comment") %></bdi>
55
</a>
66
</p>
77
<div class="d-flex flex-nowrap gap-3 justify-content-between align-items-end">

0 commit comments

Comments
 (0)