summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-01-02 16:51:35 -0500
committerParker Berberian <pberberian@iol.unh.edu>2019-01-02 16:51:35 -0500
commit6f351cd2d984dc85b3a49e3e0e835192e50b4ad6 (patch)
tree094b2b3118ea190acad3384cef06f010ea2d7b1d
parent4482bfa78a65e0711aff6d3e9937ca415dc9dbd0 (diff)
Removes log button in deployment
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>
-rw-r--r--dashboard/src/templates/resource/steps/pod_definition.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/dashboard/src/templates/resource/steps/pod_definition.html b/dashboard/src/templates/resource/steps/pod_definition.html
index b2b4998..1e0a6f2 100644
--- a/dashboard/src/templates/resource/steps/pod_definition.html
+++ b/dashboard/src/templates/resource/steps/pod_definition.html
@@ -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);