mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 03:11:01 -06:00
23 lines
605 B
HTML
23 lines
605 B
HTML
<div ng-controller="JsonEditorCtrl">
|
|
<div class="gf-box-header">
|
|
<div class="gf-box-title">
|
|
<i class="fa fa-edit"></i>
|
|
JSON
|
|
</div>
|
|
|
|
<button class="gf-box-header-close-btn" ng-click="dismiss();">
|
|
<i class="fa fa-remove"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="gf-box-body json-box-body">
|
|
<div class="gf-form">
|
|
<textarea class="gf-form-input" ng-model="json" rows="20" spellcheck="false"></textarea>
|
|
</div>
|
|
|
|
<div class="gf-form-button-row">
|
|
<button type="button" class="btn btn-success" ng-show="canUpdate" ng-click="update(); dismiss();">Update</button>
|
|
</div>
|
|
</div>
|
|
</div>
|