Skip to content

Commit

Permalink
improvement check current updateTechs list for hiddenLogos
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Jul 4, 2024
1 parent 243ac77 commit 13db319
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ export class AngularTechsLogosComponent implements OnInit, OnChanges {
const currentList = this.listSignal();
const currentHiddenLogos = this.hiddenLogosSignal();

if (currentList) {
if (currentList && this.list) {
this.techsList.set(this.getTechs(currentList));
} else if (currentHiddenLogos && currentHiddenLogos.length > 0) {
} else if (currentHiddenLogos && this.hiddenLogos) {
this.techsList.set(this.hiddenTechs(currentHiddenLogos));
} else {
this.techsList.set(this.techs);
Expand Down

0 comments on commit 13db319

Please sign in to comment.