Skip to content

Commit

Permalink
chore: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 8, 2024
1 parent 6c800f4 commit ef6ec85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
export let className: string | undefined = undefined
export let onRequestClose: () => void
$: items = item.items.map(item => ({
$: items = item.items.map((item) => ({
...item,
onClick: (event: MouseEvent) => {
onRequestClose()
Expand All @@ -17,7 +17,7 @@
}))
</script>

<DropdownButton width={item.width} items={items}>
<DropdownButton width={item.width} {items}>
<button
class={classnames('jse-context-menu-button', className, item.main.className)}
type="button"
Expand Down

0 comments on commit ef6ec85

Please sign in to comment.