fix(core): Ticktet comment can have empty body

i.e. time tracking

ref: #732 #726
This commit is contained in:
2025-04-26 06:26:31 +09:30
parent 1719b6c417
commit ca022e0697

View File

@ -134,9 +134,9 @@ class TicketCommentBase(
)
body = models.TextField(
blank = False,
blank = True,
help_text = 'Comment contents',
null = False,
null = True,
verbose_name = 'Comment',
)