Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix DB manager trigger info dlg (less than)
Fix #45420
  • Loading branch information
elpaso authored and nyalldawson committed Oct 18, 2021
1 parent 6e7625f commit a329b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/info_model.py
Expand Up @@ -281,7 +281,7 @@ def triggersDetails(self):
for trig in self.table.triggers():
name = u'%(name)s (<a href="action:trigger/%(name)s/%(action)s">%(action)s</a>)' % {"name": trig.name,
"action": "delete"}
tbl.append((name, trig.function))
tbl.append((name, trig.function.replace('<', '&lt;')))

return HtmlTable(tbl, {"class": "header"})

Expand Down

0 comments on commit a329b88

Please sign in to comment.