mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
feat: Show panel menus only when opened
This commit is contained in:
parent
17ad4a4358
commit
52db37bbad
1 changed files with 3 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ limitations under the License.
|
|||
<span style="float: right;">
|
||||
<div class="btn-group" role="group" aria-label="...">
|
||||
<div type="button" ng-click="resetAxisConfig()"
|
||||
ng-if="config.panel.columnPanelOpened"
|
||||
class="btn btn-default" style="padding: 2px 5px 2px 5px;">
|
||||
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
|
|
@ -194,10 +195,12 @@ limitations under the License.
|
|||
<span style="float: right;">
|
||||
<div class="btn-group" role="group" aria-label="...">
|
||||
<div type="button" ng-click="parameterChanged()"
|
||||
ng-if="config.panel.parameterPanelOpened"
|
||||
class="btn btn-default" style="padding: 2px 5px 2px 5px;">
|
||||
<i class="fa fa-floppy-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
<div type="button" ng-click="resetParameterConfig()"
|
||||
ng-if="config.panel.parameterPanelOpened"
|
||||
class="btn btn-default" style="padding: 2px 5px 2px 5px;">
|
||||
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue