Commit b29ffd83 by Rashid Khan

Fixed typo in table, added no filters message, removed default sort on…

Fixed typo in table, added no filters message, removed default sort on @timestamp from table in guided dashboard
parent 45b00d08
...@@ -234,7 +234,7 @@ ...@@ -234,7 +234,7 @@
}, },
{ {
"title": "Events", "title": "Events",
"height": "350px", "height": "650px",
"editable": true, "editable": true,
"collapse": false, "collapse": false,
"collapsable": true, "collapsable": true,
...@@ -251,7 +251,7 @@ ...@@ -251,7 +251,7 @@
"pages": 5, "pages": 5,
"offset": 0, "offset": 0,
"sort": [ "sort": [
"@timestamp", "_id",
"desc" "desc"
], ],
"style": { "style": {
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
</style> </style>
<div class='filtering-container'> <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 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}}" > <div class="filter-{{filterSrv.list[id].mandate}}" >
<strong>{{filterSrv.list[id].type}}</strong> <strong>{{filterSrv.list[id].type}}</strong>
......
...@@ -39,7 +39,7 @@ ...@@ -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> <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> </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"> <table class="table-hover table table-condensed" ng-style="panel.style">
<thead ng-show="panel.header"> <thead ng-show="panel.header">
......
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