Commit 1e6f3da9 authored by Illya Klymov's avatar Illya Klymov

Merge branch 'migrate_urlparamtoobject_to_querytoobject_334521' into 'master'

Migrate the deprecated "urlParamsToObject" to "queryToObject"

See merge request gitlab-org/gitlab!65894
parents e6308ade b09ea9f2
<script> <script>
import { GlFilteredSearchToken } from '@gitlab/ui'; import { GlFilteredSearchToken } from '@gitlab/ui';
import { mapState } from 'vuex'; import { mapState } from 'vuex';
// eslint-disable-next-line import/no-deprecated import { getParameterByName, setUrlParams, queryToObject } from '~/lib/utils/url_utility';
import { getParameterByName, setUrlParams, urlParamsToObject } from '~/lib/utils/url_utility';
import { s__ } from '~/locale'; import { s__ } from '~/locale';
import { import {
SEARCH_TOKEN_TYPE, SEARCH_TOKEN_TYPE,
...@@ -68,8 +67,7 @@ export default { ...@@ -68,8 +67,7 @@ export default {
}, },
}, },
created() { created() {
// eslint-disable-next-line import/no-deprecated const query = queryToObject(window.location.search);
const query = urlParamsToObject(window.location.search);
const tokens = this.tokens const tokens = this.tokens
.filter((token) => query[token.type]) .filter((token) => query[token.type])
......
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