diff --git a/apps/wei/views.py b/apps/wei/views.py
index cb8e364672c7d4fe59e644b4c079f11c62e421dc..b3d2c3a45a82ac90654575e08eb7c177fdc12591 100644
--- a/apps/wei/views.py
+++ b/apps/wei/views.py
@@ -704,7 +704,8 @@ class WEIUpdateRegistrationView(ProtectQuerysetMixin, LoginRequiredMixin, Update
     def get_form(self, form_class=None):
         form = super().get_form(form_class)
         form.fields["user"].disabled = True
-        if not self.object.first_year:
+        # The auto-json-format may cause issues with the default field remove
+        if not PermissionBackend.check_perm(self.request, 'wei.change_weiregistration_information_json', self.object):
             del form.fields["information_json"]
         return form