Add 24 hours refresh for dashboard (#5068)

* adding 24 hours refresh

* adding additional hours
This commit is contained in:
Alexander Ko 2018-05-24 17:44:24 -07:00 committed by Maxime Beauchemin
parent 42d0597b90
commit e30215c3d8
1 changed files with 5 additions and 0 deletions

View File

@ -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 {