Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
6203ef6c
Commit
6203ef6c
authored
Jul 23, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #256 from zimbatm/sorted-stored-dashboards
Order the stored dashboards alphabetically. Fixes #230
parents
f57dae2a
f09f8a49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
panels/dashcontrol/load.html
+2
-3
No files found.
panels/dashcontrol/load.html
View file @
6203ef6c
...
...
@@ -30,11 +30,11 @@
<h6
ng-show=
"elasticsearch.dashboards.length"
>
Elasticsearch stored dashboards
</h6>
<h6
ng-hide=
"elasticsearch.dashboards.length"
>
No dashboards matching your query found
</h6>
<table
class=
"table table-condensed table-striped"
>
<tr
ng-repeat=
"row in elasticsearch.dashboards"
>
<tr
ng-repeat=
"row in elasticsearch.dashboards
| orderBy:['_id']
"
>
<td><a
ng-click=
"elasticsearch_delete(row._id)"
><i
class=
"icon-remove"
></i></a></td>
<td><a
href=
"#/dashboard/elasticsearch/{{row._id}}"
>
{{row._id}}
</a></td>
<td><a><i
class=
"icon-share"
ng-click=
"share = dashboard.share_link(row._id,'elasticsearch',row._id)"
bs-modal=
"'panels/dashcontrol/share.html'"
></i></a></td>
</tr>
</table>
</div>
</div>
\ No newline at end of file
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment