Skip to content

Commit

Permalink
fix missingn semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
lenadax committed Jan 24, 2025
1 parent a162aa3 commit d3956c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/default/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export class AutocompleteWidget {
dd_height = this.dd_elem.outerHeight(),
top;

let viewport_edge = scrolltop + $(window).outerHeight()
let viewport_edge = scrolltop + $(window).outerHeight();
let dd_bottom = input_top + input_height + dd_height;

if (dd_bottom >= viewport_edge) {
Expand Down

0 comments on commit d3956c6

Please sign in to comment.