Rockwell Schrock
Rockwell Schrock
I have run into a similar issue – it raises when defining the prop types. For example, in `GoogleMaps.js`: ``` var controlledPropTypes = { center: _react.PropTypes.object, // boom, _react.PropTypes is...
@ttson24 Turns out I was running an old version (v6.0.3) of `react-google-maps`. Make sure you update to the latest version (v9.4.5 currently)
Of course the source URL link changed because `master` changed, but yes that was the line I was referencing. My workaround was to just put the popover content first. :)...
@s2tephen: I would recommend breaking out your read operations into a separate thread. Join it to the main thread when you're done. Something like this (untested): ``` ruby require 'thread'...
Edit: I opened up a new issue for this: #167. --- @arjanmalda I am also experiencing this same issue. When using the Media picker from the top bar, the "Add...
This would unfortunately break the core API specification and would require a major version bump per SemVer, which is just not in the cards right now. And also I agree...
Yup, I think that all makes sense. Thanks.
@jjcarstens You may be right about downloads, but for artifacts I did find conflicts such as ``` /Volumes/Nerves/artifacts/nerves_system_rpi3a_tailscale-portable-1.25.1/staging/usr/lib/xtables/libip6t_hl.so /Volumes/Nerves/artifacts/nerves_system_rpi3a_tailscale-portable-1.25.1/staging/usr/lib/xtables/libip6t_HL.so ``` I'm happy to change it to `XDG_DATA_HOME` to make it...
For folks who need to downgrade squashfs on macOS using Homebrew: ```sh brew tap-new zappy/edith brew extract --version="4.5.1" squashfs zappy/edith brew install [email protected] brew link --overwrite [email protected] unsquashfs -version #...
I went down this road again and came to the same conclusion as @salseeg. Would it make sense to add a `$NERVES_TMP_DIR` environment variable that can be passed to `mktemp`?...