Commit 498f69ea25a7897dbb97cbd84519115a847dbbe0
1 parent
89c185c9fe
Exists in
develop
Fix
Lint errors
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/app/shared/sinonimo/sinonimo.component.ts
... | ... | @@ -45,7 +45,7 @@ export class SinonimoComponent implements OnInit { |
45 | 45 | } |
46 | 46 | |
47 | 47 | validateNext() { |
48 | - const sinonimo = this.sinonimos[this.currentIndex] | |
48 | + const sinonimo = this.sinonimos[this.currentIndex]; | |
49 | 49 | sinonimo.selected = (sinonimo.cantidadRestante > 0) ? false : true; |
50 | 50 | return !sinonimo.selected ? 'disabled' : 'btn-effect'; |
51 | 51 | } |