diff options
author | Vitaly Takmazov | 2024-03-17 07:55:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-03-17 07:55:22 +0300 |
commit | 8207857f4a3ab8a3bdae8aa248637700c6072dd0 (patch) | |
tree | e597af01157029face1464ae5d2e52b04fbd565c /src/main/resources | |
parent | 0e1f88d67d1b9c77a854a887da45a10994cf91f3 (diff) |
Do not resolve nicknames for recommendations
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/templates/views/thread.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html index 19d81d75..e3fdee40 100644 --- a/src/main/resources/templates/views/thread.html +++ b/src/main/resources/templates/views/thread.html @@ -110,7 +110,7 @@ {% if rec.uri.toString() is empty %} <a href="/{{ rec.name }}/">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} {% else %} - <a href="{{ rec.uri }}" data-user-uri="1">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} + <a href="{{ rec.uri }}">@{{ rec.name }}</a>{% if loop.index < (loop.length - 1) %}, {% endif %} {% endif %} {% endfor %} </div> |