From 963adc2f4413dd45c0c245e854b092535e35416d Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Fri, 27 Oct 2023 15:15:37 +0200 Subject: [PATCH 1/2] Always use whole user name as link --- templates/shared/user/name.tmpl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/templates/shared/user/name.tmpl b/templates/shared/user/name.tmpl index 343c76240748f..0b2a4f1bd6f90 100644 --- a/templates/shared/user/name.tmpl +++ b/templates/shared/user/name.tmpl @@ -1,5 +1 @@ -{{if .FullName}} - {{.FullName}} ({{.Name}}) -{{else}} - {{.Name}} -{{end}} +{{if .FullName}}{{.FullName}} ({{.Name}}){{else}}{{.Name}}{{end}} From dfac3704171418a42140b606bdc1377096c883c3 Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Sun, 29 Oct 2023 16:23:24 +0100 Subject: [PATCH 2/2] swap username and full name --- templates/shared/user/name.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/shared/user/name.tmpl b/templates/shared/user/name.tmpl index 0b2a4f1bd6f90..896349fdf8b80 100644 --- a/templates/shared/user/name.tmpl +++ b/templates/shared/user/name.tmpl @@ -1 +1 @@ -{{if .FullName}}{{.FullName}} ({{.Name}}){{else}}{{.Name}}{{end}} +{{.Name}}{{if .FullName}} ({{.FullName}}){{end}}