Skip to content

Commit

Permalink
16031 make script result message display markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson authored and jeremystretch committed May 8, 2024
1 parent 5c68fc9 commit 0df3787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netbox/extras/tables/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ class ScriptResultsTable(BaseTable):
template_code="""{% load log_levels %}{% log_level record.status %}""",
verbose_name=_('Level')
)
message = tables.Column(
message = columns.MarkdownColumn(
verbose_name=_('Message')
)

Expand Down Expand Up @@ -581,7 +581,7 @@ class ReportResultsTable(BaseTable):
url = tables.Column(
verbose_name=_('URL')
)
message = tables.Column(
message = columns.MarkdownColumn(
verbose_name=_('Message')
)

Expand Down

0 comments on commit 0df3787

Please sign in to comment.