allow updating an event without specifying tags

This commit is contained in:
Thomas Steen Rasmussen 2020-08-05 01:02:52 +02:00
parent fb65aa45f5
commit c153a2c3e3
1 changed files with 1 additions and 1 deletions

View File

@ -1266,7 +1266,7 @@ class Event(CampRelatedModel):
help_text="The estimated demand for this event. Used by the autoscheduler to pick the optimal location for events. Set to 0 to disable demand constraints for this event.",
)
tags = TaggableManager()
tags = TaggableManager(blank=True)
class Meta:
ordering = ["title"]