default tip for auto#1546
Conversation
721301c to
6bdd082
Compare
|
Since @tophtucker is out, do you want to review @Fil? I wonder if e.g. #1547 is a blocker. |
6bdd082 to
c98e56d
Compare
605a910 to
8418386
Compare
|
I don’t have a good fix for the challenges of doing server-side rendering with Vue while adding interaction during client-side hydration. The problem is the pointer interaction captures a reference to the DOM element during the initial render, but this is Vue’s virtual DOM node, which isn’t what we want, and I don’t know if it’s feasible for us to maintain a mapping from the virtual DOM node to the corresponding real one after Vue renders. But anyway, we can just defer rendering to client-side for interactive charts for now. If we can figure out a way to opt-out of Vue’s client-side hydration, then we could restore server-side rendering but replace it with the real DOM on the client. |
d70295d to
5e28846
Compare
|
wow |
* default tip for auto * use real DOM during hydration * fix unit tests * defer for auto mark * update comment
Supersedes #1532.