remote-auto-save -> outlet-auto-save

This commit is contained in:
Kevin McConnell
2025-02-28 15:15:09 +00:00
parent 4d13db0f8b
commit 5d1206e067
2 changed files with 2 additions and 2 deletions
@@ -0,0 +1,13 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static outlets = [ "auto-save" ]
change(event) {
this.autoSaveOutlet.change(event)
}
submit() {
this.autoSaveOutlet.submit()
}
}