-
-
Notifications
You must be signed in to change notification settings - Fork 192
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: make the verify and captures pages consistent #152
Conversation
c9c8ea3
to
17d9068
Compare
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.
Excellent work @tranquanghuy0801!
Just a few minor comments.
@nmcharlton Thanks for the feedback. I have made the changes as you requested |
@nmcharlton , I think the issue #110 relates to this. We already had UUID field in Capture Detail dialog. Do we need to put UUID field in the top filter as well? |
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.
Awesome work, thanks @tranquanghuy0801!
Let's get this PR merged and aligned with the @gwynndp's refactor, then address #110 under a separate PR. |
@nmcharlton , do I have to push more commits to resolve these conflicts? |
It would be great if you're able to resolve the conflicts and push the result. |
@tranquanghuy0801 you can merge master into your branch and resolve conflicts and push |
yeah, I am doing that. |
daf74a2
to
6cd065a
Compare
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.
Just a couple of merge issues
src/components/FilterTop.js
Outdated
@@ -79,7 +80,6 @@ function Filter(props) { | |||
const filterOptionAll = 'All'; | |||
const dateStartDefault = null; | |||
const dateEndDefault = null; | |||
const [uuid, setUUID] = useState(filter?.uuid || ''); |
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.
Looks like the UUID change has been accidentally removed in the merge.
src/components/FilterTop.js
Outdated
@@ -161,24 +159,6 @@ function Filter(props) { | |||
props.onSubmit && props.onSubmit(filter); | |||
} | |||
|
|||
const defaultOrgList = userHasOrg |
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 block needs to stay
src/components/FilterTop.js
Outdated
@@ -387,8 +359,7 @@ function Filter(props) { | |||
// clearOnBlur | |||
// handleHomeEndKeys | |||
/> | |||
{ | |||
/* {!userHasOrg && ( }*/ |
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 org changes here need to stay in
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.
Great work 😎
Resolves issue #51