Rename columns

This commit is contained in:
Jorge Manrubia
2025-09-28 11:06:40 +02:00
parent 47eaecae31
commit 7a97d978f5
8 changed files with 66 additions and 28 deletions
@@ -0,0 +1,11 @@
import { Controller } from "@hotwired/stimulus"
import { nextFrame } from "helpers/timing_helpers";
export default class extends Controller {
static targets = [ "clickable" ]
async click() {
await nextFrame()
this.clickableTarget.click()
}
}