diff --git a/src/backend/InvenTree/common/models.py b/src/backend/InvenTree/common/models.py index cc0e3566a3..2cd07f3b61 100644 --- a/src/backend/InvenTree/common/models.py +++ b/src/backend/InvenTree/common/models.py @@ -2921,6 +2921,10 @@ class Note( created: Date/time that the note was created """ + # Ignore default sanitizing of the 'content' field + # Note: This is handled explicitly in the 'save' method + SAFE_FIELDS = ['content'] + class Meta: """Meta options for Note model."""