mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
Add 12 & 24 hours refresh rate option to dashboards.
This commit is contained in:
parent
d95c22fa24
commit
4c70349ee1
@ -30,6 +30,7 @@
|
||||
- Add limit parameter to tasks API. @alexpekurovsky
|
||||
- Add SQLAlchemy pool settings.
|
||||
- Support for category type y axis.
|
||||
- Add 12 & 24 hours refresh rate option to dashboards.
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -17,6 +17,8 @@ function DashboardCtrl($rootScope, $routeParams, $location, $timeout, $q, $uibMo
|
||||
{ name: '10 minutes', rate: 60 * 10 },
|
||||
{ name: '30 minutes', rate: 60 * 30 },
|
||||
{ name: '1 hour', rate: 60 * 60 },
|
||||
{ name: '12 hour', rate: 12 * 60 * 60 },
|
||||
{ name: '24 hour', rate: 24 * 60 * 60 },
|
||||
];
|
||||
|
||||
this.setRefreshRate = (rate) => {
|
||||
|
Loading…
Reference in New Issue
Block a user