Skip to content

Commit

Permalink
chore: use plural for variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jan 10, 2024
1 parent 2068823 commit 56fb8d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/development/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@
console.log('onChangeQueryLanguage', newQueryLanguageId)
queryLanguageId = newQueryLanguageId
}
function onRenderContextMenu(item: ContextMenuItem[], content: RenderMenuContext) {
console.log('onRenderContextMenu', item, content)
return item
function onRenderContextMenu(items: ContextMenuItem[], content: RenderMenuContext) {
console.log('onRenderContextMenu', items, content)
return items
}
function openInWindow() {
Expand Down

0 comments on commit 56fb8d9

Please sign in to comment.