diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-02 16:51:35 -0500 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-02 16:51:35 -0500 |
commit | 6f351cd2d984dc85b3a49e3e0e835192e50b4ad6 (patch) | |
tree | 094b2b3118ea190acad3384cef06f010ea2d7b1d /dashboard/src/templates | |
parent | 4482bfa78a65e0711aff6d3e9937ca415dc9dbd0 (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>
Diffstat (limited to 'dashboard/src/templates')
-rw-r--r-- | dashboard/src/templates/resource/steps/pod_definition.html | 4 |
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); |