mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-25 00:03:27 +08:00
Shared task designated users style fix [SCI-9339]
This commit is contained in:
parent
c9e3055a22
commit
03b12e0a22
2 changed files with 3 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue