mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
fix unintentionally long abbreviations
This commit is contained in:
parent
a858030e4c
commit
4ce962ef57
1 changed files with 3 additions and 1 deletions
|
@ -117,7 +117,9 @@ defmodule PhilomenaWeb.ProfileView do
|
|||
nil
|
||||
|
||||
list ->
|
||||
Enum.join(list)
|
||||
list
|
||||
|> Enum.take(4)
|
||||
|> Enum.join()
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue