Baseline replacing collection with board across code

This commit is contained in:
Jorge Manrubia
2025-11-05 13:31:54 +01:00
parent 8caaad0105
commit 03a345609e
269 changed files with 990 additions and 990 deletions
@@ -5,7 +5,7 @@ export default class extends Controller {
static classes = [ "collapsed", "noTransitions" ]
static targets = [ "column", "button" ]
static values = {
collection: String
board: String
}
initialize() {
@@ -104,6 +104,6 @@ export default class extends Controller {
}
#localStorageKeyFor(column) {
return `expand-${this.collectionValue}-${column.getAttribute("id")}`
return `expand-${this.boardValue}-${column.getAttribute("id")}`
}
}
@@ -24,7 +24,7 @@ export default class extends Controller {
checkNone() {
this.checkboxTargets.forEach(checkbox => {
if (checkbox.dataset.collectionsFormTarget === "meCheckbox") return
if (checkbox.dataset.boardsFormTarget === "meCheckbox") return
checkbox.checked = false
})
}