Rowan Savage
Rowan Savage
@rikinsk - How do we actually get PRs acknowledged??
It would be great if Hasura could check if the extension is installed, and then if it was just skip trying to install it. This would fix Heroku deploys, and...
@tirumaraiselvan - Unfortunately it appears 2.9.0-beta is also broken on heroku (but in a different way) https://github.com/hasura/graphql-engine/issues/8770
@switz - I've posted an update code for ignoring via webpack. If that's helpful for tou https://github.com/palantir/blueprint/issues/2193#issuecomment-1204741102
For anyone using Blueprint 4.x - this is the update code to ignore the icons. Update your webpack config to ```js new NormalModuleReplacementPlugin( /.*\/@blueprintjs\/icons\/lib\/esm\/iconSvgPaths.*/, resolve(__dirname, "../../app/javascript/blueprint-icons.js"), ), ``` Then inside...
Similar issue. We have a Popover, with a button in it that is set to `autoFocus` it makes the screen jump to the top of the page whenever the popover...
We solved this by adding this to our button component ```js const buttonRef = useRef(null); requestAnimationFrame(() => { if (buttonRef.current !== null && props.autoFocus) { buttonRef.current.focus(); } }); My Autofocus...
@BookOfGreg - Will this allow support of React 18 with `react-rails`? I am not much of a rails expert - but is there anything I can do to help get...
@rmosolgo - Any update on this? We recently upgraded to rails 6.0.2 and now GraphiQL has broken before of #2550
Same issue. Using React 16 (haven't tried with React 15) `Cannot find imported React library`