Force word wrap in tag table

Bootstrap disables word wrap in rtl, this overrides it.
This commit is contained in:
Anton Khorev 2024-04-17 17:30:53 +03:00
parent 0547bda93f
commit da454f0593
2 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
<% unless tag_details.empty? %>
<h4><%= t ".tags" %></h4>
<div class='mb-3 border border-secondary-subtle rounded overflow-hidden'>
<table class='mb-0 browse-tag-list table align-middle text-break'>
<table class='mb-0 browse-tag-list table align-middle'>
<%= render :partial => "browse/tag", :collection => tag_details.sort %>
</table>
</div>