Skip to content

Commit

Permalink
Fix reintroduction of issue fixed in #12
Browse files Browse the repository at this point in the history
  • Loading branch information
neonbunny committed Nov 25, 2024
1 parent e2a367b commit 793b55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event_tracker/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ def render_column(self, row, column):
if row.type == "input":
result += f"<div class='input'>{row.data}</div>"

result += f"<div class='output'>{html.escape('\n'.join(row.associated_beaconlog_output.values_list('data', flat=True)))}</div>"
result += f"<div class='output'>{html.escape(chr(10).join(row.associated_beaconlog_output.values_list('data', flat=True)))}</div>"

return result
elif column == '': # The column with button in
Expand Down

0 comments on commit 793b55a

Please sign in to comment.