BigW Consortium Gitlab

Commit a16defb8 by Filipa Lacerda Committed by Lin Jen-Shin

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

Fixed the filter bar not working in IE Closes #29742 See merge request !10149
parent c84b03d1
......@@ -369,7 +369,7 @@
paths.push(`search=${sanitized}`);
}
const parameterizedUrl = `?scope=all&utf8=&${paths.join('&')}`;
const parameterizedUrl = `?scope=all&utf8=%E2%9C%93&${paths.join('&')}`;
gl.utils.visitUrl(parameterizedUrl);
}
......
---
title: Fixed filtered search not working in IE
merge_request:
author:
......@@ -55,7 +55,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