Add an edit splats in modal

This commit is contained in:
Jason Zimdars
2024-07-24 10:07:11 -05:00
parent 932a83197b
commit 89a02fc960
11 changed files with 93 additions and 35 deletions
@@ -0,0 +1,9 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = [ "dialog" ]
open() {
this.dialogTarget.showModal()
}
}