aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/html')
-rw-r--r--pkg/html/html.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/html/html.go b/pkg/html/html.go
index e077153d1..0da3674ea 100644
--- a/pkg/html/html.go
+++ b/pkg/html/html.go
@@ -205,7 +205,7 @@ func formatStringList(list []string) string {
return strings.Join(list, ", ")
}
-func dereferencePointer(v interface{}) interface{} {
+func dereferencePointer(v any) any {
reflectValue := reflect.ValueOf(v)
if !reflectValue.IsNil() && reflectValue.Kind() == reflect.Ptr {
elem := reflectValue.Elem()