Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
e3d7f6f9
Commit
e3d7f6f9
authored
1 year ago
by
Imre Toth
Browse files
Options
Downloads
Patches
Plain Diff
CE-2036
: Fix record table search functionality
parent
669c064d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!407
CE-2141: 3.0.0
,
!338
CE-2036: Fix record table search functionality
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/records/RecordListView.js
+3
-5
3 additions, 5 deletions
src/views/records/RecordListView.js
with
3 additions
and
5 deletions
src/views/records/RecordListView.js
+
3
−
5
View file @
e3d7f6f9
...
...
@@ -116,11 +116,9 @@ export function RecordListView() {
// Request new search results whenever search or pagination changes
useEffect
(()
=>
{
let
requestParams
=
initRequestParams
(
pagination
,
deserialize
(
urlState
.
query
)
);
requestParams
.
filter
=
recordFilter
;
let
requestParams
=
initRequestParams
(
pagination
);
requestParams
.
pv_status
=
recordFilter
;
requestParams
.
record_name
=
deserialize
(
urlState
.
query
);
getRecords
(
requestParams
);
},
[
getRecords
,
recordFilter
,
urlState
.
query
,
pagination
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment