django 1.8 requires fields in Meta for ModelForm children
diff --git a/xos/services/mcord/admin.py b/xos/services/mcord/admin.py
index b496ef7..1a0063b 100644
--- a/xos/services/mcord/admin.py
+++ b/xos/services/mcord/admin.py
@@ -113,6 +113,7 @@
 
     class Meta:
         model = VBBUComponent
+        fields = '__all__'
 
 # Define the admin form for the tenant. This uses a similar structure as the
 # service but uses HelloWorldTenantCompleteForm to change the python behavior.