-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create details dialog for application exploring - Closes #4356, #4357 #4369
Create details dialog for application exploring - Closes #4356, #4357 #4369
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
quick review
...nApplication/explore/components/BlockchainApplicationDetails/BlockchainApplicationDetails.js
Outdated
Show resolved
Hide resolved
...nApplication/explore/components/BlockchainApplicationDetails/BlockchainApplicationDetails.js
Outdated
Show resolved
Hide resolved
</div> | ||
<div className={styles.balanceRow}> | ||
<span>Deposited:</span> | ||
<span>5,351.859 LSK</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all the value should come from the variable like data.deposit
@@ -11,3 +11,4 @@ export { default as watchList } from '@dpos/validator/store/reducers/watchList'; | |||
export { default as service } from './service'; | |||
export { default as loading } from './loading'; | |||
export { account } from 'src/modules/account/store/reducer'; | |||
export { blockChainApplications } from 'src/modules/blockchainApplication/explore/store/reducer'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eniolam1000752 This should be aliased along with the previous line
…56-create-details-dialog-for-app-exploring' of https://github.com/LiskHQ/lisk-desktop into 4356-create-details-dialog-for-app-exploring
lastCertificateHeight: 1000, | ||
lastUpdated: 123456789, | ||
deposit: 5e10, | ||
serviceUrl: 'https://enevti.com/', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the actual response
{
"data": [{
"name": "Test app",
"chainID": "aq02qkbb35u4jdq8szo3pnsq",
"state": "active",
"address": "lsk24cd35u4jdq8szo3pnsqe5dsxwrnazyqqqg5eu",
"lastCertificateHeight": 1000, // Optional
"lastUpdated": 123456789, // Optional
}],
"meta": {
"count": 10,
"offset": 10,
"total": 150,
},
"links": {}
}
@eniolam1000752 Please fix CSS for application status badge |
2b29ea8
to
20cfb58
Compare
Signed-off-by: eniolam1000752 <eniolam1000752@gmail.com>
20cfb58
to
534e059
Compare
What was the problem?
This PR resolves #4356, #4357
How was it solved?
How was it tested?