]> Untitled Git - lemmy.git/commitdiff
A few fixes.
authorDessalines <tyhou13@gmx.com>
Tue, 14 Jul 2020 15:59:15 +0000 (11:59 -0400)
committerDessalines <tyhou13@gmx.com>
Tue, 14 Jul 2020 15:59:15 +0000 (11:59 -0400)
ui/src/components/data-type-select.tsx
ui/src/components/listing-type-select.tsx
ui/src/components/main.tsx

index 8e905bf4cd6b0824a0e5ac8a957b23bb53a8be9b..d16c785d8bafeac01c3446ded7ffb598f18956a0 100644 (file)
@@ -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_,
     };
index 6d13f19a19697d10cca28f2c313690802d93eac1..e9b5a03125b7798554d6a3c2b109897aa238e220 100644 (file)
@@ -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_,
     };
index 0560e802e4b5c08cc10c3c5e88d290969f67c1d0..0392090a5f3f26bc601a9470db0a7a644aba4d84 100644 (file)
@@ -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);
   }