Skip to content

Commit

Permalink
style: format source files
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Aug 15, 2020
1 parent adf41d8 commit 102ec3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion npm-audit.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h5 class="card-title">
<div class="card">
<div class="card-body">
<h5 class="card-title">
August 15th 2020, 11:16:57 am
August 15th 2020, 11:29:36 am
</h5>
<p class="card-text">Last updated</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Paginator/SimplePaginator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export class SimplePaginator extends Array implements SimplePaginatorContract<an
* Returns an array of urls under a given range
*/
public getUrlsForRange(start: number, end: number) {
let urls: { url: string; page: number, isActive: boolean }[] = []
let urls: { url: string; page: number; isActive: boolean }[] = []
for (let i = start; i <= end; i++) {
urls.push({ url: this.getUrl(i), page: i, isActive: i === this.currentPage })
}
Expand Down

0 comments on commit 102ec3c

Please sign in to comment.