Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b401f8e2
Commit
b401f8e2
authored
Jul 10, 2021
by
Siddharth Asthana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate the deprecated "urlParamsToObject" to "queryToObject"
Changelog: other
parent
ed8e5fe2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+2
-4
No files found.
app/assets/javascripts/boards/stores/boards_store.js
View file @
b401f8e2
...
...
@@ -8,8 +8,7 @@ import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import
createDefaultClient
from
'
~/lib/graphql
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
parseBoolean
,
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
// eslint-disable-next-line import/no-deprecated
import
{
mergeUrlParams
,
urlParamsToObject
,
getUrlParamsArray
}
from
'
~/lib/utils/url_utility
'
;
import
{
mergeUrlParams
,
queryToObject
,
getUrlParamsArray
}
from
'
~/lib/utils/url_utility
'
;
import
{
ListType
,
flashAnimationDuration
}
from
'
../constants
'
;
import
eventHub
from
'
../eventhub
'
;
import
ListAssignee
from
'
../models/assignee
'
;
...
...
@@ -597,8 +596,7 @@ const boardsStore = {
getListIssues
(
list
,
emptyIssues
=
true
)
{
const
data
=
{
// eslint-disable-next-line import/no-deprecated
...
urlParamsToObject
(
this
.
filter
.
path
),
...
queryToObject
(
this
.
filter
.
path
,
{
gatherArrays
:
true
}),
page
:
list
.
page
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment