mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fixed typo in table, added no filters message, removed default sort on @timestamp from table in guided dashboard
This commit is contained in:
parent
45b00d080b
commit
b29ffd8347
@ -234,7 +234,7 @@
|
||||
},
|
||||
{
|
||||
"title": "Events",
|
||||
"height": "350px",
|
||||
"height": "650px",
|
||||
"editable": true,
|
||||
"collapse": false,
|
||||
"collapsable": true,
|
||||
@ -251,7 +251,7 @@
|
||||
"pages": 5,
|
||||
"offset": 0,
|
||||
"sort": [
|
||||
"@timestamp",
|
||||
"_id",
|
||||
"desc"
|
||||
],
|
||||
"style": {
|
||||
|
@ -40,6 +40,7 @@
|
||||
</style>
|
||||
|
||||
<div class='filtering-container'>
|
||||
<span ng-show="filterSrv.ids.length == 0"><h5>No filters available</h5></span>
|
||||
<div ng-repeat="id in filterSrv.ids" class="small filter-panel-filter" ng-class="{'filter-deselected': !filterSrv.list[id].active}">
|
||||
<div class="filter-{{filterSrv.list[id].mandate}}" >
|
||||
<strong>{{filterSrv.list[id].type}}</strong>
|
||||
|
@ -39,7 +39,7 @@
|
||||
<i ng-click="panel.offset = (panel.offset + panel.size)" ng-show="data.length > panel.offset+panel.size" class='icon-arrow-right pointer'></i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="small" ng-show="panel.fields.length == 0">No columns configured. You may want to add a <strong>fields panel</strong>, or click the edit button in the top right of this panel to add some columns</div>
|
||||
<div class="small" ng-show="panel.fields.length == 0">No columns configured. You may want to select some from the list on the left. </div>
|
||||
<table class="table-hover table table-condensed" ng-style="panel.style">
|
||||
<thead ng-show="panel.header">
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user