Skip to content

Commit

Permalink
feat(menu): remove navigation by tabs in Tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Desvelao committed Aug 24, 2023
1 parent d68459f commit ea05283
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions plugins/main/public/templates/tools/tools.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!-- dev tools -->
<div ng-cloack ng-controller="toolsController as tctrl">
<div ng-show="tctrl.load">
<react-component name="EuiProgress" props="{size: 'xs', color: 'primary'}"></react-component>
<react-component
name="EuiProgress"
props="{size: 'xs', color: 'primary'}"
></react-component>
</div>

<div ng-if="!tctrl.load && tctrl.toolsTabsProps">
<react-component name="Tabs" props="tctrl.toolsTabsProps"></react-component>
</div>
<div ng-if="tctrl.tab === 'devTools' && !tctrl.load">
<div
flex="auto"
Expand Down Expand Up @@ -38,7 +38,9 @@

<textarea flex id="api_input"></textarea>
</div>
<div class="wz-dev-column-separator layout-column"><span></span></div>
<div class="wz-dev-column-separator layout-column">
<span></span>
</div>
<div id="wz-dev-right-column" flex layout="column">
<span class="wz-headline-title wz-dev-title">
<i
Expand All @@ -61,7 +63,10 @@
</div>
</div>
<div ng-show="tctrl.tab === 'logtest' && !tctrl.load">
<react-component name="Logtest" props="tctrl.toolsLogtestProps"></react-component>
<react-component
name="Logtest"
props="tctrl.toolsLogtestProps"
></react-component>
</div>
</div>
<!-- end dev tools -->

0 comments on commit ea05283

Please sign in to comment.