-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
#2449 - Improve UX for 'remove-member' proposal #2463
#2449 - Improve UX for 'remove-member' proposal #2463
Conversation
group-income Run #3583
Run Properties:
|
Project |
group-income
|
Branch Review |
sebin/task/#2449-improve-ux-for-remove-user
|
Run status |
Passed #3583
|
Run duration | 11m 39s |
Commit |
5028958dd2 ℹ️: Merge 1972775c3f4f2acf942085b52cc9f3de3ddbd08d into df255f8ca92d0b5e7ad91749d5b4...
|
Committer | Sebin Song |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
10
|
Skipped |
0
|
Passing |
111
|
View all changes introduced in this branch ↗︎ |
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.
Nice! Seems to work, just some stray debugging that needs to be removed
@@ -180,7 +180,8 @@ export default ({ | |||
this.$refs.modal.close() | |||
}, | |||
removeMember (memberID) { | |||
sbp('okTurtles.events/emit', OPEN_MODAL, 'RemoveMember', { memberID }) | |||
console.log('!@# is it here??') |
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.
Forgotten stray debugging
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.
Nice!
closes #2449
The issue happens because 'Remove member' modal opens on top of 'GroupMembersAll' modal. So once the proposal is created and the modal is closed, it is revealed again. As a fix, I just have made it replace the (a)'GroupMembersAll' modal with (b)'RemoveMember' modal. (meaning it closes a before it opens b)