From 6f351cd2d984dc85b3a49e3e0e835192e50b4ad6 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Wed, 2 Jan 2019 16:51:35 -0500 Subject: 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 --- dashboard/src/templates/resource/steps/pod_definition.html | 4 ++++ 1 file changed, 4 insertions(+) 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); -- cgit 1.2.3-korg