From f2d5829944dbc2549aad30ccf21b01adf01c7fd0 Mon Sep 17 00:00:00 2001 From: Jaime Soriano Pastor Date: Mon, 5 Dec 2016 11:51:02 +0100 Subject: [PATCH] Add 'Last 2 days' option to quick ranges (#6758) --- public/app/core/utils/rangeutil.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/core/utils/rangeutil.ts b/public/app/core/utils/rangeutil.ts index 1e564ee7ea6..15daff96f95 100644 --- a/public/app/core/utils/rangeutil.ts +++ b/public/app/core/utils/rangeutil.ts @@ -38,6 +38,7 @@ var rangeOptions = [ { from: 'now-12h', to: 'now', display: 'Last 12 hours', section: 3 }, { from: 'now-24h', to: 'now', display: 'Last 24 hours', section: 3 }, + { from: 'now-2d', to: 'now', display: 'Last 2 days', section: 0 }, { from: 'now-7d', to: 'now', display: 'Last 7 days', section: 0 }, { from: 'now-30d', to: 'now', display: 'Last 30 days', section: 0 }, { from: 'now-60d', to: 'now', display: 'Last 60 days', section: 0 },