Skip to content

Commit

Permalink
Removed unnecessary semicolon in orders/show component
Browse files Browse the repository at this point in the history
  • Loading branch information
rainerdema committed Dec 21, 2023
1 parent 98de082 commit 19e0678
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { Controller } from '@hotwired/stimulus'

export default class extends Controller {
closeMenus() {
this.element.querySelectorAll('details').forEach(details => details.removeAttribute('open'));
this.element.querySelectorAll('details').forEach(details => details.removeAttribute('open'))
}
}

0 comments on commit 19e0678

Please sign in to comment.