We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87abc53 commit f76c538Copy full SHA for f76c538
src/icon/stories/many-icons-demo.component.ts
@@ -32,7 +32,7 @@ export class ManyIconDemo implements OnInit {
32
33
ngOnInit() {
34
const iconMap = new Map();
35
- for (const [_, descriptor] of Object.entries(Icons)) {
+ for (const descriptor of Object.values(Icons)) {
36
this.iconService.register(descriptor as any);
37
if (typeof descriptor === "object" && descriptor) {
38
if (!iconMap.has(descriptor["name"])) {
0 commit comments