From 2f32d3e6dfedf985cc09d92c5be3c4b5d0f7b16c Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 14 Jul 2020 11:59:15 -0400 Subject: A few fixes. --- ui/src/components/data-type-select.tsx | 2 +- ui/src/components/listing-type-select.tsx | 2 +- ui/src/components/main.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/components/data-type-select.tsx b/ui/src/components/data-type-select.tsx index 8e905bf4..d16c785d 100644 --- a/ui/src/components/data-type-select.tsx +++ b/ui/src/components/data-type-select.tsx @@ -25,7 +25,7 @@ export class DataTypeSelect extends Component< this.state = this.emptyState; } - static getDerivedStateFromProps(props) { + static getDerivedStateFromProps(props: any): DataTypeSelectProps { return { type_: props.type_, }; diff --git a/ui/src/components/listing-type-select.tsx b/ui/src/components/listing-type-select.tsx index 6d13f19a..e9b5a031 100644 --- a/ui/src/components/listing-type-select.tsx +++ b/ui/src/components/listing-type-select.tsx @@ -26,7 +26,7 @@ export class ListingTypeSelect extends Component< this.state = this.emptyState; } - static getDerivedStateFromProps(props) { + static getDerivedStateFromProps(props: any): ListingTypeSelectProps { return { type_: props.type_, }; 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 { } 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); } -- cgit v1.2.3