David Hersey
David Hersey
I've just installed the plugin to an existing ember-cli 1.13.13 app, and when I generate a pod or a component I am getting javascript blueprints for the pod itself, but...
Hi, I have the following code in my application.emblem (this is my first ember app so please bear with me) ``` haml .title-bar data-responsive-toggle="example-menu" data-hide-for="medium" button.menu-icon type="button" data-toggle="" .title-bar-title Menu...
Hi, using react-native-persist 5.10.0 and react-native 0.59.9, I am seeing several crashes lately in our production app like: ``` Error · Out of memory [native code]stringify node_modules/redux-persist/lib/createPersistoid.js:90:57writeStagedState node_modules/redux-persist/lib/createPersistoid.js:78:6processNextKey node_modules/react-native/Libraries/Core/Timers/JSTimers.js:152:6_callTimer node_modules/react-native/Libraries/Core/Timers/JSTimers.js:414:17callTimers...
I am using ``` attributes: { iframe: { allow: 'geolocation' } }, ``` in my iFrame, and it was working ... but then due to another issue I was having...
Most notably, update(attr_hash) is not included in 1.0.8. Tore hair out for a while thinking I misunderstood the objects being returned from relationship query until I noticed it was not...
Is it possible to use BacktraceCleaner to filter the output of pry-backtrace? Something like: bc = ActiveSupport::BacktraceCleaner.new bc.add_filter { | line | line.gsub(Rails.root.to_s, '' } bc.add_silencer { | line |...
Hi, I am using react-shepherd 4.2.0, and have defined a single Shepherd context in App.jsx as the highest level component. ``` {children} {modal.openModals.map((m) => { const modalId = m; const...
The first change to the form values (using Picker) works; subsequent ones complain about values being frozen/immutable. This PR avoids mutating the form values on change.
I'm using code lifted straight from the example: ```javascript handleFormChange(formData) { const { onFormChange } = this.props; /* formData will contain all the values of the form, in this example....