john-999
john-999
Thanks! But as I understand it, this would then not apply the "debounce" value, right? Is there a way to make debounce happen as well? Because the below attempt wouldn't...
A _temporary_ solution/hack would be to set: `data: { turbo: false }`, as in: ``` ... ```
The suggestion by @nortonandreev works for me, but adds an additional, failing and unnecessary (DELETE) HTTP request: ``` Started DELETE "/users/sign_out" for 127.0.0.1 at 2022-03-03 17:33:09 +0100 Processing by Users::SessionsController#destroy...
+1 (thanks, @leonardteo)
This issue is still unresolved. Use this working hack for now: > A _temporary_ solution/hack would be to set: `data: { turbo: false }`, as in: > > ``` >...
Just started to get this bug, too: First, I had the queue name set only in the Class file (and it was working for a long time): ``` class MyThing...
I just tried this: - deleted `queue: my_thing` from the YML file - deleted `@queue = :my_thing` from the Class file - added to the Class file: ``` def self.queue...
Also : "You can install via Sublime Package Control" Currently, ST3 does not find anything using the search term "ANSIescape" or "ANSI escape" or "ANSI"in Package Control, meaning installation is...
The goal is to use this gem, but together with an *optional* "locale scope" like in the 1st example. But when I do this, Rails will generate links that don't...
In this first case below (without this gem), Rails will show `` correctly as `/en/books`: Rails.application.routes.draw do scope '(:locale)' do # localized do resources :books # end end end But...