diff --git a/netbox/core/views.py b/netbox/core/views.py index e454f109e3f..9697a73524d 100644 --- a/netbox/core/views.py +++ b/netbox/core/views.py @@ -555,7 +555,7 @@ def get(self, request): config = ConfigRevision.objects.get(pk=cache.get('config_version')) except ConfigRevision.DoesNotExist: # Fall back to using the active config data if no record is found - config = ConfigRevision(data=get_config().defaults) + config = get_config() # Raw data export if 'export' in request.GET: diff --git a/netbox/templates/core/system.html b/netbox/templates/core/system.html index 320038ac661..4ffeb5025e2 100644 --- a/netbox/templates/core/system.html +++ b/netbox/templates/core/system.html @@ -88,7 +88,7 @@