From c153a2c3e3128a455577ca2ae4d5fb7931afe46a Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 5 Aug 2020 01:02:52 +0200 Subject: [PATCH] allow updating an event without specifying tags --- src/program/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/program/models.py b/src/program/models.py index 3ca5fb4d..add1947f 100644 --- a/src/program/models.py +++ b/src/program/models.py @@ -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"]