#7564 Fix position0 of a VC not being displayed

This commit is contained in:
PieterL75 2021-10-19 16:37:20 +02:00 committed by GitHub
parent e5033c9f55
commit 14f8239dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -375,7 +375,7 @@ def badge(value, bg_class='secondary', show_empty=False):
Display the specified number as a badge.
"""
return {
'value': value,
'value': str(value),
'bg_class': bg_class,
'show_empty': show_empty,
}