Skip to content

Commit

Permalink
Fix linting (#3557)
Browse files Browse the repository at this point in the history
  • Loading branch information
stacimc authored Dec 19, 2023
1 parent fa1c2e8 commit dbe2562
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/VImageCell/VImageCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ export default defineComponent({
* @param event - the mouse click event
*/
const sendSelectSearchResultEvent = (event: MouseEvent) => {
if (event.button !== 0) return
if (event.button !== 0) {
return
}
sendCustomEvent("SELECT_SEARCH_RESULT", {
id: props.image.id,
Expand Down

0 comments on commit dbe2562

Please sign in to comment.