-
Notifications
You must be signed in to change notification settings - Fork 35
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
fix: pending tx estates #448
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.
Cool!
|
||
.EstateModal .modal-buttons .ui.button + .ui.button { | ||
margin-left: 0; | ||
} |
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.
this changes are not necessary, the shifted buttons are a result of EstateModal lacking a modal-children class on line 85.
Try it on master
webapp/src/components/EstateDetailPage/EditEstateMetadata/EstateModal/EstateModal.js
Show resolved
Hide resolved
estate, | ||
estate: { | ||
id: estate.id, | ||
data: { name: estate.data.name, parcels: estate.data.parcels } |
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.
Maybe we could have a utils fn to map the parcels leaving only the necessary props (x,y)
?
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.
Parcels have an object { x, y }
here
fix #407
Showing Estate pending transactions as:
Also, fix the styles of using
Container
instead ofdiv
onforms
pagesDouble background color
Not full width on mobile when showing pending tx
Rename some
token_id
toid
I kept critics renames to be approached in other PR (when we decide to remove
token_id
from the db)