Jacob Craig

Results 9 comments of Jacob Craig

Why not just use st.timezone('America/Denver') That way it works the same as the other getter/setters like minute, hour, etc.

I've actually got keptDuration set to zero in the demo. So they should have been wiped. As you can see, the other two tags were removed and they subscribed after...

The problem seems to be that you create the Detector object during create() and the Detector only looks for the snapshot plugin in the constructor. https://github.com/cartant/rxjs-spy/blob/master/source/spy-core.ts#L108 https://github.com/cartant/rxjs-spy/blob/master/source/detector.ts#L48

We made a draggable modal with a simple component that we put in the modal header. It doesn't work well with modals that are taller than the screen, but feel...

Hmm, I've tried that and then some. Even went to the point of installing it fresh on a new angular project and got this issue. I'll try sending this on...

Looking into it more but this appears to be the culprit of the conflicting types. For some reason, prosemirror-view and prosemirror-model are embedded in the yarn install in addition to...

@sibiraj-s The issue is with version resolution. The ngx-editor package is requiring prosemirror-view 1.31.7, but something else requires version 1.32.7. So yarn installs a local package to ngx-editor and the...

To everyone else, as a temporary workaround you can add the following to your package.json to force the resolution. ``` "resolutions": { "prosemirror-commands": "^1.5.2", "prosemirror-history": "^1.3.2", "prosemirror-inputrules": "^1.2.1", "prosemirror-keymap": "^1.2.2",...

Fortunately Yarn does provide a method to solve this by forcing the decency resolutions. If you decide not to open up semantic versioning then perhaps a note about fixing resolution...