diff --git a/netbox/templates/inc/custom_fields_panel.html b/netbox/templates/inc/custom_fields_panel.html
index 4f9b033b6..8c1872273 100644
--- a/netbox/templates/inc/custom_fields_panel.html
+++ b/netbox/templates/inc/custom_fields_panel.html
@@ -15,7 +15,7 @@
{% elif field.type == 'url' and value %}
{{ value|truncatechars:70 }}
- {% elif value %}
+ {% elif value is not None %}
{{ value }}
{% elif field.required %}
Not defined