-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feature/share experiments #62
Conversation
@@ -63,6 +63,9 @@ class ExperimentSerializer(serializers.ModelSerializer): | |||
"""Experiment serializer""" | |||
mRNA_source = ExperimentSourceSerializer() | |||
gem_source = ExperimentSourceSerializer() | |||
shared_institutions = InstitutionSimpleSerializer(many=True, read_only=True) | |||
#shared_institutions = InstitutionSimpleSerializer() |
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.
Borrar estos comentarios!
open={props.isOpen} | ||
closeIcon={<Icon name='close' size='large' onClick={() => props.handleClose()} />} | ||
> | ||
<ModalHeader>Select a Photo</ModalHeader> |
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.
Ojo con esto! Quedó un ejemplo acá, abajo dice Helen también. Dice institutionName={'asd'} institutionId={4}
. Borrar todos estos datos hardcodeados!
} | ||
} | ||
|
||
/** | ||
* Generates default table's Filters | ||
* @returns Default object for table's Filters | ||
*/ | ||
getDefaultFilters (): PaginationCustomFilter[] { | ||
getDefaultFilters(): PaginationCustomFilter[] { |
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.
Correr el comando npm run fix-link
para ver los warnings y después el npm run check-link
para verificar que no salten más warnings. Porque está lleno de alertas de ESLint, que es la herramienta que chequea que todos los estándares de programación de frontend se están respetando. Cualquier cosa consultale a Juan!
No description provided.