Vern Coffey

Results 6 comments of Vern Coffey

I'm getting mal-formed SQL when using not_null on a has_many association with a default scope ```ruby class Orchard < ApplicationRecord has_many :plantings ... ``` ```ruby class Planting < ApplicationRecord belongs_to...

I'm new to this gem but why don't you do ``` f.input :tag_ids, label: "Tags", as: :tags, collection: Tag.all ```

For others, RoboCop does not complain about `where("jsonb_column_name = '[]'"`)

You can do it with a plugin. See the **Plugins and Extensions** section of the documentation.

Yes @jgoz that is correct. The css files are imported into .JSX files. Is there a way avoid the JS becoming invalidated? Coupling .scss and .jsx files in this way...

onPressIn does not work for our use case because the user needs to be able to scroll, and onPressIn fires the event instead of scrolling.