Commit f74e9245 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'filter-bar-fix-ie' into 'master'

Fixed the filter bar not working in IE

Closes #29742

See merge request !10149
parents fcde4d2d 1b166b72
......@@ -384,7 +384,7 @@ import FilteredSearchContainer from './container';
paths.push(`search=${sanitized}`);
}
const parameterizedUrl = `?scope=all&utf8=&${paths.join('&')}`;
const parameterizedUrl = `?scope=all&utf8=%E2%9C%93&${paths.join('&')}`;
if (this.updateObject) {
this.updateObject(parameterizedUrl);
......
---
title: Fixed filtered search not working in IE
merge_request:
author:
......@@ -58,7 +58,7 @@ const FilteredSearchSpecHelper = require('../helpers/filtered_search_spec_helper
});
describe('search', () => {
const defaultParams = '?scope=all&utf8=&state=opened';
const defaultParams = '?scope=all&utf8=%E2%9C%93&state=opened';
it('should search with a single word', (done) => {
input.value = 'searchTerm';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment