Files
fizzy/app/javascript/controllers/search_form_controller.js
T
Adrien Maston 8fced550d8 Refactor
2026-03-03 10:31:08 +01:00

15 lines
315 B
JavaScript

import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["searchInput"]
clearInput() {
if (this.searchInputTarget.value) {
this.searchInputTarget.value = ""
this.searchInputTarget.focus()
} else {
this.dispatch("reset")
}
}
}