This commit is contained in:
jonaswinkler
2021-01-01 23:09:10 +01:00
parent c4367818b7
commit 6d554bace1
4 changed files with 108 additions and 18 deletions
+4 -1
View File
@@ -351,7 +351,10 @@ class SavedViewFilterRule(models.Model):
rule_type = models.PositiveIntegerField(choices=RULE_TYPES)
value = models.CharField(max_length=128)
value = models.CharField(
max_length=128,
blank=True,
null=True)
# TODO: why is this in the models file?