Why doesn't this work?
# Note the `do` block
= button_to 'Accept', firefighters_approve_path(entry), class: 'button is-success' do
i.fa.fa-thumbs-up
undefined method `stringify_keys' for String:0x007fec0bb7bcc8>
Why doesn't this work?
# Note no `do` block
= button_to 'Accept', firefighters_approve_path(entry), class: 'button is-success'
i.fa.fa-thumbs-up
undefined method `stringify_keys' for String:0x007fec0bc86b40
I want to use slim and fontawesome. What am I missing here?