Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/register": "^7.5.5",
"@elastic/charts": "^11.1.1",
"@elastic/charts": "^12.0.2",
"@elastic/datemath": "5.0.2",
"@elastic/eui": "14.0.0",
"@elastic/filesaver": "1.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,7 @@ const HostDetailsComponent = React.memo<HostDetailsComponentProps>(
setQuery={setQuery}
to={to}
narrowDateRange={(min: number, max: number) => {
/**
* Using setTimeout here because of this issue:
* https://github.com/elastic/elastic-charts/issues/360
* Need to remove the setTimeout here after this issue is fixed.
* */
setTimeout(() => {
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}, 500);
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}}
/>
)}
Expand Down
9 changes: 1 addition & 8 deletions x-pack/legacy/plugins/siem/public/pages/hosts/hosts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,7 @@ const HostsComponent = React.memo<HostsComponentProps>(
setQuery={setQuery}
to={to}
narrowDateRange={(min: number, max: number) => {
/**
* Using setTimeout here because of this issue:
* https://github.com/elastic/elastic-charts/issues/360
* Need to remove the setTimeout here after this issue is fixed.
* */
setTimeout(() => {
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}, 500);
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}}
/>
)}
Expand Down
4 changes: 1 addition & 3 deletions x-pack/legacy/plugins/siem/public/pages/network/network.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,7 @@ const NetworkComponent = React.memo<NetworkComponentProps>(
from={from}
to={to}
narrowDateRange={(min: number, max: number) => {
setTimeout(() => {
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}, 500);
setAbsoluteRangeDatePicker({ id: 'global', from: min, to: max });
}}
/>
)}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -902,10 +902,10 @@
debug "^3.1.0"
lodash.once "^4.1.1"

"@elastic/charts@^11.1.1":
version "11.1.1"
resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-11.1.1.tgz#32e1b18ec7ede9e3d62c3375284ad31d778017e2"
integrity sha512-zay5cQ39XzoKe0cabL/GCI2W1bjqatT20K/u7ZdHFa+GpazUd1/zjOpsLsKlq31Rr5yWXbc2M2iC4ZUp8n8crg==
"@elastic/charts@^12.0.2":
version "12.0.2"
resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-12.0.2.tgz#576fafccd9e9f6ca751b6e846be3a5c954e8865b"
integrity sha512-BxdJVXUkYE11X+n5QWfu6ntDCm6wbkvLRNWrJG30pgGv9QEDhEbraQ8ql9Vx1454EuEjgXP6xOM0X+3rCO4Nqw==
dependencies:
"@types/d3-shape" "^1.3.1"
"@types/luxon" "^1.11.1"
Expand Down