Commit 36953379 by Torkel Ödegaard

refactoring: Elasticearch filter label PR #8420

parent 648e8a95
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<label class="gf-form-label width-10">Query {{$index + 1}}</label> <label class="gf-form-label width-10">Query {{$index + 1}}</label>
<input type="text" class="gf-form-input max-width-12" ng-model="filter.query" spellcheck='false' placeholder="Lucene query" ng-blur="onChangeInternal()"> <input type="text" class="gf-form-input max-width-12" ng-model="filter.query" spellcheck='false' placeholder="Lucene query" ng-blur="onChangeInternal()">
<label class="gf-form-label width-10">Label {{$index + 1}}</label> <label class="gf-form-label width-10">Label {{$index + 1}}</label>
<input type="text" class="gf-form-input max-width-12" ng-model="filter.label" spellcheck='false' placeholder="Readable Label" ng-blur="onChangeInternal()"> <input type="text" class="gf-form-input max-width-12" ng-model="filter.label" spellcheck='false' placeholder="Label" ng-blur="onChangeInternal()">
</div> </div>
<div class="gf-form"> <div class="gf-form">
<label class="gf-form-label" ng-if="$first"> <label class="gf-form-label" ng-if="$first">
......
...@@ -97,7 +97,7 @@ function (queryDef) { ...@@ -97,7 +97,7 @@ function (queryDef) {
for (var i = 0; i < aggDef.settings.filters.length; i++) { for (var i = 0; i < aggDef.settings.filters.length; i++) {
var query = aggDef.settings.filters[i].query; var query = aggDef.settings.filters[i].query;
var label = aggDef.settings.filters[i].label; var label = aggDef.settings.filters[i].label;
label = label==='' || label === undefined?query:label; label = label === '' || label === undefined ? query : label;
filterObj[label] = { filterObj[label] = {
query_string: { query_string: {
query: query, query: query,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment