Fix bug for param helptext in New Report page

This commit is contained in:
Lance Edgar 2023-10-06 10:12:38 -05:00
parent 53cf771c81
commit d1d781966f

View file

@ -431,7 +431,8 @@ class ReportOutputView(ExportMasterView):
node.default = param.default node.default = param.default
# set docstring # set docstring
helptext[param.name] = param.helptext # nb. must avoid newlines, they cause some weird "blank page" error?!
helptext[param.name] = param.helptext.replace('\n', ' ')
schema.add(node) schema.add(node)