Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 24 hours refresh for dashboard (apache#5068)
Browse files Browse the repository at this point in the history
* adding 24 hours refresh

* adding additional hours
aok1425 authored and mistercrunch committed May 25, 2018
1 parent 2dfa4dc commit cdcb4e1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -21,6 +21,11 @@ const options = [
[30, t('30 seconds')],
[60, t('1 minute')],
[300, t('5 minutes')],
[1800, t('30 minutes')],
[3600, t('1 hour')],
[21600, t('6 hours')],
[43200, t('12 hours')],
[86400, t('24 hours')],
].map(o => ({ value: o[0], label: o[1] }));

class RefreshIntervalModal extends React.PureComponent {

0 comments on commit cdcb4e1

Please sign in to comment.