2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-07 10:13:36 +00:00

Allow 'notes' field in Part object to be blank

This commit is contained in:
Oliver Walters
2020-02-23 20:02:33 +11:00
parent 6c415bc922
commit 4a2fa36e30
2 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -438,7 +438,7 @@ class Part(models.Model):
virtual = models.BooleanField(default=False, help_text=_('Is this a virtual part, such as a software product or license?'))
notes = MarkdownxField(help_text=_('Part notes - supports Markdown formatting'))
notes = MarkdownxField(blank=True, help_text=_('Part notes - supports Markdown formatting'))
bom_checksum = models.CharField(max_length=128, blank=True, help_text=_('Stored BOM checksum'))