bug in url field on user profile

This commit is contained in:
2025-10-13 15:09:50 -06:00
parent 2e61a06ad8
commit abd14ea24e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -45,10 +45,10 @@
<div class="text-lg font-bold">{{ fullname }}</div>
{{ if isset(description) }}<div>{{ description }}</div>{{ end }}
{{ if isset(email) }}<div><strong>E-mail:</strong> {{ email }}</div>{{ end }}
{{ if isset(url) }}
{{ if isset(user_url) }}
<div>
<strong>URL: </strong>
<a href="{{ url }}" target="_blank" class="text-blue-700 hover:text-blue-900">{{ url }}</a>
<a href="{{ user_url }}" target="_blank" class="text-blue-700 hover:text-blue-900">{{ user_url }}</a>
</div>
{{ end }}