mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Fix JSON hint (#15890)
This commit is contained in:
parent
b4cf795e83
commit
d4300794df
1 changed files with 9 additions and 9 deletions
|
@ -1,17 +1,17 @@
|
|||
<div class="form-group regex">
|
||||
<span class="hintbox-label" ng-click="showJsonHint = !showJsonHint">
|
||||
<label for="visEditorRawJson{{agg.id}}">JSON Input</label>
|
||||
<i class="fa fa-info-circle"></i>
|
||||
<span class="hintbox-label">
|
||||
<label for="visEditorRawJson{{agg.id}}">
|
||||
JSON Input
|
||||
<kbn-info
|
||||
placement="right"
|
||||
info='Any JSON formatted properties you add here will be merged with the elasticsearch aggregation definition for this section. For example "shard_size" on a terms aggregation.'>
|
||||
</kbn-info>
|
||||
</label>
|
||||
</span>
|
||||
<div class="hintbox" ng-show="showJsonHint">
|
||||
<p>
|
||||
Any JSON formatted properties you add here will be merged with the elasticsearch aggregation definition for this section. For example <i>shard_size</i> on a <i>terms</i> aggregation
|
||||
</p>
|
||||
</div>
|
||||
<p>
|
||||
<textarea
|
||||
type="text"
|
||||
aria-labelledby="visEditorRawJson{{agg.id}}"
|
||||
id="visEditorRawJson{{agg.id}}"
|
||||
class="form-control"
|
||||
ng-model="agg.params.json"
|
||||
validate-json
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue