mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
Fix user popup in global activities [SCI-3285]
This commit is contained in:
parent
01ffb43c23
commit
8c2b2513b0
1 changed files with 5 additions and 3 deletions
|
@ -17,8 +17,10 @@ module GlobalActivitiesHelper
|
|||
no_links ? generate_name(value) : generate_link(value, activity)
|
||||
end
|
||||
end
|
||||
sanitize_input(I18n.t("global_activities.content.#{activity.type_of}_html",
|
||||
parameters.symbolize_keys))
|
||||
custom_auto_link(
|
||||
I18n.t("global_activities.content.#{activity.type_of}_html", parameters.symbolize_keys),
|
||||
team: activity.team
|
||||
)
|
||||
end
|
||||
|
||||
def generate_link(message_item, activity)
|
||||
|
@ -31,7 +33,7 @@ module GlobalActivitiesHelper
|
|||
|
||||
case obj
|
||||
when User
|
||||
return popover_for_user_name(obj, team, false, true)
|
||||
return "[@#{obj.full_name}~#{obj.id.base62_encode}]"
|
||||
when Tag
|
||||
# Not link for now
|
||||
return current_value
|
||||
|
|
Loading…
Reference in a new issue