Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
hive
wallet
Commits
a3b12620
Commit
a3b12620
authored
Apr 05, 2019
by
motrebski
Committed by
Jonathan Porta
Jul 26, 2019
Browse files
Minor pagination fix
parent
dcd9f07b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/app/components/pages/SteemProposalSystem.jsx
View file @
a3b12620
...
...
@@ -406,7 +406,7 @@ module.exports = {
const
last_id
=
(
proposals
.
size
&&
proposals
.
get
(
last
).
get
(
'
id
'
))
||
null
;
const
newProposals
=
proposals
.
size
>
10
?
proposals
.
delete
(
last
)
:
proposals
;
proposals
.
size
>
=
10
?
proposals
.
delete
(
last
)
:
proposals
;
const
voterProposals
=
state
.
global
.
get
(
'
voterProposals
'
,
List
());
const
votesInProgress
=
state
.
global
.
get
(
`transaction_proposal_vote_active_
${
currentUser
}
`
,
...
...
Write
Preview
Supports
Markdown
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