summaryrefslogtreecommitdiffstats
path: root/ui/src/components/main.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-07-14 11:59:15 -0400
committerDessalines <tyhou13@gmx.com>2020-07-14 11:59:15 -0400
commit2f32d3e6dfedf985cc09d92c5be3c4b5d0f7b16c (patch)
tree0c1f7e20592767b00098c6b96038b36aefaf179f /ui/src/components/main.tsx
parentd6fdfe0b6d348e0c3da5deaf5beea329ff04f068 (diff)
A few fixes.
Diffstat (limited to 'ui/src/components/main.tsx')
-rw-r--r--ui/src/components/main.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index 0560e802..0392090a 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -554,12 +554,12 @@ export class Main extends Component<any, MainState> {
}
nextPage(i: Main) {
- i.updateUrl({ page: this.state.page + 1 });
+ i.updateUrl({ page: i.state.page + 1 });
window.scrollTo(0, 0);
}
prevPage(i: Main) {
- i.updateUrl({ page: this.state.page - 1 });
+ i.updateUrl({ page: i.state.page - 1 });
window.scrollTo(0, 0);
}