Skip to content

Commit

Permalink
oscar bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhb authored and ivanhb committed May 3, 2024
1 parent cdf271c commit 3aa3dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ var search = (function () {
//search_conf_json = util.update_obj(search_conf_json, config_mod);

if (query_comp.values.length != 0) {
if (query_comp.rules.length <= 1) {
if (query_comp.rules.length == 0) {
//console.log("It's a freetext search!");
//one text box
var qtext = query_comp.values[0];
Expand Down

0 comments on commit 3aa3dcc

Please sign in to comment.