Skip to content

Commit c79e1ff

Browse files
committed
#22795: Static test fix.
1 parent 3c8dcea commit c79e1ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Search/view/frontend/web/js/form-mini.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ define([
129129
*/
130130
setActiveState: function (isActive) {
131131
var searchValue;
132-
132+
133133
this.searchForm.toggleClass('active', isActive);
134134
this.searchLabel.toggleClass('active', isActive);
135135

136136
if (this.isExpandable) {
137137
this.element.attr('aria-expanded', isActive);
138138
searchValue = this.element.val();
139-
this.element.val("");
139+
this.element.val('');
140140
this.element.val(searchValue);
141141
}
142142
},

0 commit comments

Comments
 (0)