Skip to content

Commit

Permalink
Merge pull request #6 from diogojs/website
Browse files Browse the repository at this point in the history
Change number of results per page
  • Loading branch information
diogojs authored Sep 19, 2024
2 parents 58adf86 + 53f8ee9 commit ed59a9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified docs/assets/SulaBR.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
<app-root></app-root>
</main>
</div>
<script src="polyfills-SCHOHYNV.js" type="module"></script><script src="main-3BKSCLGN.js" type="module"></script></body>
<script src="polyfills-SCHOHYNV.js" type="module"></script><script src="main-3D37Q6HN.js" type="module"></script></body>
</html>
2 changes: 1 addition & 1 deletion docs/main-3BKSCLGN.js → docs/main-3D37Q6HN.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion website/src/app/home-rankings/home-rankings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class HomeRankingsComponent implements OnInit {
currentKindOfResult: string = "single";

currentPage: number = 1;
resultsPerPage: number = 5;
resultsPerPage: number = 20;
lastPage: number = 999;

constructor(private resultsService: ResultsService) { }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<section *ngIf="false">
<section *ngIf="!isLogged()">
<p>Você precisa logar na WCA para poder se cadastrar no Ranking.</p>
<button (click)="login()">Login</button>
</section>

<section class="cadastro" *ngIf="true">
<section class="cadastro" *ngIf="isLogged()">
<form [formGroup]="dropDownForm">
<label>ID WCA: {{ getCurrentWcaId() }}</label><br>
<label>Estado: </label>
Expand Down

0 comments on commit ed59a9a

Please sign in to comment.