Shared task designated users style fix [SCI-9339]

This commit is contained in:
Martin Artnik 2023-10-04 09:56:09 +02:00
parent c9e3055a22
commit 03b12e0a22
2 changed files with 3 additions and 3 deletions

View file

@ -42,7 +42,7 @@
<div class="flex-block items-center w-full justify-start">
<span class="sn-icon block-icon sn-icon-users mr-2.5"></span>
<span class="hidden-xs hidden-sm"><%= t('my_modules.details.assigned_users') %></span>
<span class="hidden-xs hidden-sm whitespace-nowrap"><%= t('my_modules.details.assigned_users') %></span>
<%= render partial: "shareable_links/my_modules/user_my_modules", locals: { my_module: @my_module } %>
</div>

View file

@ -1,7 +1,7 @@
<div class="inline-flex flex-row flex-nowrap">
<div class="flex flex-wrap ml-3 gap-1 mb-2">
<% my_module.user_my_modules.each do |um| %>
<% user = um.user %>
<div class="inline-flex gap-2 flex-nowrap h-6 px-2 py-1 items-center select-none" title="<%= user.full_name %>">
<div class="inline-flex flex-nowrap gap-2 h-6 px-2 py-1 items-center select-none" title="<%= user.full_name %>">
<img class="block rounded-full h-5" src="<%= user_avatar_absolute_url(user, :icon_small, true) %>" alt="<%= user.full_name %>">
<span style="block"><%= user.full_name %></span>
</div>