Skip to content

Commit

Permalink
add blank=True to hide from ModelAdmin
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 30, 2024
1 parent c5ab86c commit 5f3f9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edc_glucose/model_mixins/fasting_model_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Meta:
),
),
f"{prefix}fasting_duration_minutes": models.IntegerField(
null=True, help_text="system calculated value"
null=True, blank=True, help_text="system calculated value"
),
}

Expand Down

0 comments on commit 5f3f9b6

Please sign in to comment.