From 2d73d969b90d1dd79e2c6ce90f892846483cfa30 Mon Sep 17 00:00:00 2001 From: Daniel Rodriguez Date: Mon, 27 Sep 2021 23:04:56 +0200 Subject: [PATCH] Added domain link and fix --- README.md | 4 +++- src/modules/pool/components/pool/pool.component.ts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f01ecd..61f92e1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ # TFTPaths Angular website based in Teamfight Tactics champions sinergies and combinations. -Champion pool not updated. +Champion pool not updated. + +It can be tested at: https://tftpaths.com ### Install libraries ```bash diff --git a/src/modules/pool/components/pool/pool.component.ts b/src/modules/pool/components/pool/pool.component.ts index 8bf0c28..8b5c366 100644 --- a/src/modules/pool/components/pool/pool.component.ts +++ b/src/modules/pool/components/pool/pool.component.ts @@ -35,7 +35,7 @@ export class PoolComponent implements OnInit, OnDestroy { ) { this.subscription = this.poolService.setChampions().subscribe( (data: DataToShare) => { if (data) { - const {champions, roles, rolesPool, bonusesPool, noChampSelected, teamSize } = data; + const {champions, roles, rolesPool, bonusesPool, noChampSelected, teamSize} = data; this.champions = champions; this.roles = roles; this.rolesPool = rolesPool;