-
Notifications
You must be signed in to change notification settings - Fork 4
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
Peer review managers csv #12
base: master
Are you sure you want to change the base?
Conversation
e7d48d1
to
ebd3c4f
Compare
2baf11c
to
b4d0971
Compare
5095bb1
to
84f36b6
Compare
84f36b6
to
86a327a
Compare
const [loading, setLoading] = useState(false) | ||
|
||
const handleSubmit = async () => { | ||
onChange(userIdentifiers) |
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.
When you import the same twice you end up with duplicates, and combined with duplicate key that's causing all kinds of issues (try removing the duplicates).
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.
I fixed this by overwriting the list instead of appending to it. Could generate a merged list as well since we have access to entries
. Not sure if that's needed though.
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.
Looking into this
86a327a
to
4e911a3
Compare
FYI I fixed ESLint and reformatted the files, but there are still a bunch of linter errors that need to be fixed manually (mostly proptypes). |
Create endpoint for CSV upload handle
Return unknown email addresses
Export endpoint not working
8195a9f
to
1c248c3
Compare
Rename homonymous variables
closes #11
depends on indico/indico#6408