jestrickler

Results 10 comments of jestrickler

I was thinking of SQL change or adding a listener on column select, but I'm not sure how to get at the tables other than brute force comparing selected columns...

Add some dummy state and update it when you change options to force the component to update https://stackoverflow.com/questions/65284303/how-to-force-an-update-for-a-functional-component

try this, it worked for me: ``` import React, { useState } from "react"; import "./styles.css"; import { Editor } from "react-draft-wysiwyg"; import "react-draft-wysiwyg/dist/react-draft-wysiwyg.css"; export default function App() { const...

I wish! Been on vacation for the holidays.

Ours starts with missing overlay on step-0, not just going back.

I noticed in the chrome devtools react components tab that the lifecycle prop on the JoyrideStep component is 'init' when the overlay is NOT displayed and changes to 'tooltip' when...

This seemed to have to do with timing. I was calling the helpers.reset(true) when run is true in my own useEffect. I moved this to the callback on ACTIONS.CLOSE and...

I have state passed from the parent component where I use a menu item to start the tour: `const [runTour, setRunTour] = useState(false)` Then I use the joyride helpers and...