This commit is contained in:
shamoon 2025-03-05 09:28:18 -08:00
parent 1f549dcd52
commit 5881c70051
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class Migration(migrations.Migration):
help_text="Optional values to assign to the custom fields.", help_text="Optional values to assign to the custom fields.",
null=True, null=True,
verbose_name="custom field values", verbose_name="custom field values",
default={}, default=dict,
), ),
), ),
] ]

View File

@ -1278,7 +1278,7 @@ class WorkflowAction(models.Model):
help_text=_( help_text=_(
"Optional values to assign to the custom fields.", "Optional values to assign to the custom fields.",
), ),
default={}, default=dict,
) )
remove_tags = models.ManyToManyField( remove_tags = models.ManyToManyField(