Skip to content
Snippets Groups Projects
Commit a0a4d595 authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[plotters] patch for sample data (string on multiple lines not possible in js)

parent 3ddbc5f8
No related branches found
No related tags found
1 merge request!222Plotterparams merge
Pipeline #
......@@ -107,7 +107,7 @@ def plotterparameter_sampleplot(context, plotterparameter):
request=context['request'],
plotterparameter=plotterparameter,
plotter=plotter,
plotter_sample_data=plotter_sample_data,
plotter_sample_data=plotter_sample_data.replace("\n",""),
panel_id=id,
)
......@@ -131,7 +131,7 @@ def plotterparameter_sampleplot_display(context, plotter):
request=context['request'],
plotterparameter=plotterparameter,
plotter=plotter,
plotter_sample_data=plotter_sample_data,
plotter_sample_data=plotter_sample_data.replace("\n",""),
panel_id=id,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment