Skip to content

Commit

Permalink
Mark batch, personalization and state controllers as lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Nov 6, 2024
1 parent 49a3b8c commit 677bbab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions assets/controllers/batch.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {Controller} from '@hotwired/stimulus'

/* stimulusFetch: 'lazy' */
export default class extends Controller {
static targets = [
'selectAllCheckbox',
Expand Down
1 change: 1 addition & 0 deletions assets/controllers/personalization.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Controller } from '@hotwired/stimulus'
import Sortable from 'sortablejs'

/* stimulusFetch: 'lazy' */
export default class extends Controller {
static targets = [ 'visibleColumns', 'hiddenColumns' ]

Expand Down
1 change: 1 addition & 0 deletions assets/controllers/state.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Controller } from '@hotwired/stimulus'

/* stimulusFetch: 'lazy' */
export default class extends Controller {
static values = {
urlQueryParameters: Object,
Expand Down

0 comments on commit 677bbab

Please sign in to comment.