mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 03:11:01 -06:00
23 lines
549 B
HTML
23 lines
549 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" style="height: 500px">
|
|
<textarea ng-model="json" rows="20" spellcheck="false" style="width: 100%;"></textarea>
|
|
<br>
|
|
<br>
|
|
|
|
<button type="button" class="btn btn-success" ng-show="canUpdate" ng-click="update(); dismiss();">Update</button>
|
|
</div>
|
|
|
|
</div>
|