Alexey Gordienko

Results 5 comments of Alexey Gordienko

I solved this problem by updating "sqlite3": "^ 4.0.6". Here is the repository https://github.com/gordienko/postleaf.

I just disable the turbo in the form, adding data: { turbo: false }: `= simple_form_for(resource, as: resource_name, url: invitation_path(resource_name), html: { method: :post }, data: { turbo: false })...

Hi, @guillaumebriday! is it possible to implement it regularly in your module? To implement something like https://codepen.io/rogerkuik/pen/abZOLXr, I created a stimulus controller **ad_carousel**: ``` import { Controller } from '@hotwired/stimulus'...

After small changes: ``` import {Controller} from '@hotwired/stimulus' import Swiper from 'swiper/bundle' export default class extends Controller { static targets = ["thumbs", "top"] static values = { thumbs: Object, top:...