Removes log button in deployment 45/66145/1
authorParker Berberian <pberberian@iol.unh.edu>
Wed, 2 Jan 2019 21:51:35 +0000 (16:51 -0500)
committerParker Berberian <pberberian@iol.unh.edu>
Wed, 2 Jan 2019 21:51:35 +0000 (16:51 -0500)
We had a button that would barf up XML logs for development
but forgot to disable it for the live dashboard

Change-Id: I1061ba967f077a103a7e1ae61d60d81cd9e4c443
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
dashboard/src/templates/resource/steps/pod_definition.html

index b2b4998..1e0a6f2 100644 (file)
@@ -85,7 +85,11 @@ function main(graphContainer, overviewContainer, toolbarContainer) {
 
     addToolbarButton(editor, toolbarContainer, 'zoomIn', '', "/static/img/mxgraph/zoom_in.png", true);
     addToolbarButton(editor, toolbarContainer, 'zoomOut', '', "/static/img/mxgraph/zoom_out.png", true);
+
+    {% if debug %}
     addToolbarButton(editor, toolbarContainer, 'printXML', '', '/static/img/mxgraph/fit_to_size.png', true);
+    {% endif %}
+
     var outline = new mxOutline(graph, overviewContainer);