Unnest bubble filters

This commit is contained in:
Jose Farias
2024-11-05 13:04:05 -06:00
parent 26af27ba26
commit f2706d0f74
49 changed files with 381 additions and 437 deletions
@@ -0,0 +1,9 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
merge({ params: { key, value } }) {
const url = new URL(window.location.href)
url.searchParams.set(key, value)
Turbo.visit(url)
}
}