Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wallet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
wallet
Compare revisions
6b4e498a83d0b07f7208b35204be7623c64384db to 0e2a74aaa04c150acb49fc86eb1d75a1d90598fe
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hive/wallet
Select target project
No results found
0e2a74aaa04c150acb49fc86eb1d75a1d90598fe
Select Git revision
Branches
19-on-proposals-page-make-vote-count-clickable-and-have-it-show-modal-dialog-with-individual-votes
42-take-into-account-badactor-list-and-disallow-transfers-2
dependabot/npm_and_yarn/handlebars-4.5.3
develop
master
mirrornet
refactor-proposals-ui
walletCleanse
witnesses-page-fixes
9 results
Swap
Target
hive/wallet
Select target project
hive/wallet
1 result
6b4e498a83d0b07f7208b35204be7623c64384db
Select Git revision
Branches
19-on-proposals-page-make-vote-count-clickable-and-have-it-show-modal-dialog-with-individual-votes
42-take-into-account-badactor-list-and-disallow-transfers-2
dependabot/npm_and_yarn/handlebars-4.5.3
develop
master
mirrornet
refactor-proposals-ui
walletCleanse
witnesses-page-fixes
9 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix transactions filters
· b65382ad
Quoc Huy Nguyen Dinh
authored
5 months ago
b65382ad
Merge branch 'fix-duplicate-ids' into 'develop'
· 0e2a74aa
Dan Notestein
authored
5 months ago
Fix transactions filters See merge request
!151
0e2a74aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/components/elements/Filters/index.jsx
+11
-7
11 additions, 7 deletions
src/app/components/elements/Filters/index.jsx
with
11 additions
and
7 deletions
src/app/components/elements/Filters/index.jsx
View file @
0e2a74aa
...
...
@@ -8,6 +8,7 @@ class Filters extends React.Component {
showFilters
:
false
,
};
}
render
()
{
const
{
handleIncoming
,
...
...
@@ -20,13 +21,16 @@ class Filters extends React.Component {
}
=
this
.
props
;
const
handleShowFilters
=
()
=>
{
this
.
setState
({
showFilters
:
!
this
.
state
.
showFilters
});
this
.
setState
((
prevState
)
=>
({
showFilters
:
!
prevState
.
showFilters
,
}));
};
return
(
<
div
className
=
"row"
>
<
div
className
=
"column small-12"
>
<
button
type
=
"button"
onClick
=
{
handleShowFilters
}
className
=
{
this
.
state
.
showFilters
===
true
...
...
@@ -79,10 +83,10 @@ class Filters extends React.Component {
<
input
onChange
=
{
handleFromUser
}
type
=
"checkbox"
id
=
"
outgoing
"
name
=
"
outgoing
"
id
=
"
from-user
"
name
=
"
from-user
"
/>
<
label
htmlFor
=
"
outgoing
"
>
<
label
htmlFor
=
"
from-user
"
>
Received from
</
label
>
</
div
>
...
...
@@ -90,10 +94,10 @@ class Filters extends React.Component {
<
input
onChange
=
{
handleToUser
}
type
=
"checkbox"
id
=
"
outgoing
"
name
=
"
outgoing
"
id
=
"
to-user
"
name
=
"
to-user
"
/>
<
label
htmlFor
=
"
outgoing
"
>
<
label
htmlFor
=
"
to-user
"
>
Transfer to
</
label
>
</
div
>
...
...
This diff is collapsed.
Click to expand it.