Sartaj Singh Baveja
Sartaj Singh Baveja
@davegravy Give it a shot once again. Updated a couple other things. Should be working now
@davegravy Hey, unfortunately, we don't have a JSFiddle template. I remember someone used codesandbox (https://codesandbox.io/) to demonstrate an example to us. Here's the link for that - https://codesandbox.io/s/3j0540mo5 Maybe this...
Yeah, in the package.json, include the library as follows `"react-timeseries-charts": "esnet/react-timeseries-charts"` This should work. It's how this works as well - https://codesandbox.io/s/3j0540mo5
Thanks for this. I'll look into it more and see what's going wrong!
@pjm17971 Maybe you could take a look at it whenever you get some time
You need to make sure that the topology that you're passing contains a key "paths" which is an array of different paths available. Each element in the array is dict...
@igozali It's working fine on my end. Also, react-select is a devDependency only, as seen in this file https://github.com/esnet/react-network-diagrams/blob/master/packages/react-network-diagrams/package.json
Similar to the other issue, you can definitely create durations similar to a moment object. ``` it("can construct one with a moment style object", () => { const p =...
Hi @jscottsf Here are a few tests for the duration code - https://github.com/esnet/pond/blob/master/packages/pond/tests/duration.test.ts ``` it("can construct one with a moment", () => { const p = duration(moment.duration(24, "hours")); expect(+p).toBe(86400000); });...
Ah, okay. Got it. I'll look into it, thanks