File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11__title__ = 'django-process'
22__description__ = 'An app for create process workflows and schedule tasks on django'
33__url__ = 'https://github.com/Jesrat/django-process'
4- __version__ = '4.7.5 '
4+ __version__ = '4.7.6 '
55__author__ = 'Josue Gomez'
66__author_email__ = 'jgomez@jesrat.com'
77__license__ = 'Apache 2.0'
Original file line number Diff line number Diff line change @@ -97,5 +97,5 @@ def diagram(obj):
9797 response = response .replace ('{name}' , str (obj .__str__ ()))
9898 response = response .replace ('{data}' , str (data ))
9999 response = response .replace ('{nodes}' , str (nodes ))
100- response = response .replace ('{chart_height}' , process .chart_height or get_conf ('diagram__chart_height' ))
100+ response = response .replace ('{chart_height}' , str ( process .chart_height ) or get_conf ('diagram__chart_height' ))
101101 return mark_safe (response )
You can’t perform that action at this time.
0 commit comments