Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Jacobs committed Dec 10, 2020
1 parent 1c6c406 commit 40102e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/frontend/web/js/toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ define([
var options = this.options;
var element = this.element;
// Dont assume that the form is available at all times
var hasForm = $(this.options.filterFormSelector).length > 0
var hasForm = $(this.options.filterFormSelector).length > 0;
this.options.ajaxFilters = this.options.ajaxFilters && hasForm;

this._bind(element.find(options.modeControl), options.mode, options.modeDefault);
Expand Down

0 comments on commit 40102e9

Please sign in to comment.