mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
improve default time ranges (#100536)
This commit is contained in:
parent
638ab8247b
commit
e7bc8831c2
1 changed files with 5 additions and 5 deletions
|
@ -605,35 +605,35 @@ export function getUiSettings(): Record<string, UiSettingsParams<unknown>> {
|
|||
}),
|
||||
},
|
||||
{
|
||||
from: 'now-24h',
|
||||
from: 'now-24h/h',
|
||||
to: 'now',
|
||||
display: i18n.translate('data.advancedSettings.timepicker.last24Hours', {
|
||||
defaultMessage: 'Last 24 hours',
|
||||
}),
|
||||
},
|
||||
{
|
||||
from: 'now-7d',
|
||||
from: 'now-7d/d',
|
||||
to: 'now',
|
||||
display: i18n.translate('data.advancedSettings.timepicker.last7Days', {
|
||||
defaultMessage: 'Last 7 days',
|
||||
}),
|
||||
},
|
||||
{
|
||||
from: 'now-30d',
|
||||
from: 'now-30d/d',
|
||||
to: 'now',
|
||||
display: i18n.translate('data.advancedSettings.timepicker.last30Days', {
|
||||
defaultMessage: 'Last 30 days',
|
||||
}),
|
||||
},
|
||||
{
|
||||
from: 'now-90d',
|
||||
from: 'now-90d/d',
|
||||
to: 'now',
|
||||
display: i18n.translate('data.advancedSettings.timepicker.last90Days', {
|
||||
defaultMessage: 'Last 90 days',
|
||||
}),
|
||||
},
|
||||
{
|
||||
from: 'now-1y',
|
||||
from: 'now-1y/d',
|
||||
to: 'now',
|
||||
display: i18n.translate('data.advancedSettings.timepicker.last1Year', {
|
||||
defaultMessage: 'Last 1 year',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue