We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A lógica referente a egressos poderia ser mudada, pois está levando em conta se o estudante possui algum curso finalizado:
export function isFinishedSomeCourse(person: CollectionEntry<'people'>) { return person.data.occupations.some( (occupation: Student) => occupation.isFinished ); }
isFinishedSomeCourse(person) && ( <Badge url="/projects/people/egresso/1" text="egresso" /> )
Posso fazer uma mudança em que, caso haja pelo menos 1 curso em andamento, não apareça "Egresso"?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A lógica referente a egressos poderia ser mudada, pois está levando em conta se o estudante possui algum curso finalizado:
export function isFinishedSomeCourse(person: CollectionEntry<'people'>) { return person.data.occupations.some( (occupation: Student) => occupation.isFinished ); }
isFinishedSomeCourse(person) && ( <Badge url="/projects/people/egresso/1" text="egresso" /> )
Posso fazer uma mudança em que, caso haja pelo menos 1 curso em andamento, não apareça "Egresso"?
The text was updated successfully, but these errors were encountered: