added trim method to _selectSource to remove leading and trailing whitespace

pull/2557/head
Ahmed 2023-07-07 14:34:50 +01:00
parent 447d04b9ea
commit c80765a412
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@ odoo.define("web_search_with_and/static/src/js/search_bar.js", function (require
filterId: source.filterId,
value:
"value" in source
? source.value
: this._parseWithSource(labelValue, source),
label: labelValue,
? source.value.trim()
: this._parseWithSource(labelValue, source).trim(),
label: labelValue.trim(),
operator: source.filterOperator || source.operator,
isShiftKey: this.isShiftKey,
});