Skip to content

Commit

Permalink
Hotfix: Correct more importmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
krschacht committed May 14, 2024
1 parent 73b6080 commit 5a4d783
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/javascript/stimulus/composer_controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Controller } from "@hotwired/stimulus"
import viewport from "./utils/viewport"
import viewport from "stimulus/utils/viewport"

export default class extends Controller {
static targets = [ "form", "input", "submit", "overlay", "cancel",
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/stimulus/message_scroller_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ window.lastMessageControllerInstance = null
window.wasScrolledToBottom = false

import { Controller } from "@hotwired/stimulus"
import throttle from "./utils/throttle"
import throttle from "stimulus/utils/throttle"

export default class extends Controller {
scrollableTarget = null
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/stimulus/scrollable_controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Controller } from "@hotwired/stimulus"
import throttle from "./utils/throttle"
import throttle from "stimulus/utils/throttle"

export default class extends Controller {
static classes = [ "top", "notTop", "bottom", "notBottom" ]
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/stimulus/textarea_autogrow_controller.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Controller } from "@hotwired/stimulus"
import throttle from "./utils/throttle"
import throttle from "stimulus/utils/throttle"

export default class extends Controller {

Expand Down

0 comments on commit 5a4d783

Please sign in to comment.