Small redesign of transaction filters (#650)

This commit is contained in:
Zach Gollwitzer
2024-04-18 17:05:37 -04:00
committed by GitHub
parent 0a1fa525d5
commit 0277bc94f3
6 changed files with 60 additions and 28 deletions

View File

@@ -16,7 +16,10 @@ export default class extends Controller {
}
select(event) {
this.updateClasses(event.target.dataset.id);
const element = event.target.closest("[data-id]");
if (element) {
this.updateClasses(element.dataset.id);
}
}
onTurboLoad = () => {