Closes #9161: Pretty print JSON custom field data when editing

This commit is contained in:
jeremystretch
2022-08-10 16:08:52 -04:00
parent d07272a037
commit 0f5ac05cf1
8 changed files with 10 additions and 10 deletions

View File

@@ -99,6 +99,7 @@ class JSONField(_JSONField):
if not self.help_text:
self.help_text = 'Enter context data in <a href="https://json.org/">JSON</a> format.'
self.widget.attrs['placeholder'] = ''
self.widget.attrs['class'] = 'font-monospace'
def prepare_value(self, value):
if isinstance(value, InvalidJSONInput):