Make the Delete account dialog more careful

This commit is contained in:
Alexander Zaytsev
2026-03-06 18:01:23 +01:00
parent 932d40878f
commit 04bf063e3c
4 changed files with 43 additions and 12 deletions
@@ -0,0 +1,9 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static values = { name: String }
dispatch() {
document.dispatchEvent(new CustomEvent(this.nameValue, { bubbles: true }))
}
}