Skip to content
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

Cria função para verificar se há planos na escola a serem renderizados #3

Open
wants to merge 1 commit into
base: 1.1
Choose a base branch
from

Conversation

AnaPerola
Copy link

@AnaPerola AnaPerola commented Jun 26, 2024

Antes a condicional apenas verificava os planos apenas da primeira escola e se a mesma fosse vazia ele não renderizava nada. Ao inserir essa função temos a renderização correta dos planos.

@AnaPerola AnaPerola changed the title Cria função para verificar se há planos na escola à serem renderizados Cria função para verificar se há planos na escola a serem renderizados Jun 26, 2024
Comment on lines +63 to +71
hasTeachingPlans(): boolean {
let hasPlans = false;
this.unities.forEach(unity => {
if (unity.teachingPlans && unity.teachingPlans.length > 0) {
hasPlans = true;
}
});
return hasPlans;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Essa lógica não vai causar problema? 🤔

O que aconteceria se a primeira unidade tiver teachingPlans e a última não?

Se for para não mostrar as unidades que não tem teachingPlans, eu colocaria a condicional dentro do ngFor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants