aboutsummaryrefslogtreecommitdiff
path: root/src/webex/pages/logs.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-10 23:02:00 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-10 23:02:00 +0100
commit3c882c44b5aba1ae397a2b89f99f4cdb82fbbbfa (patch)
tree842d51eb84dcc48ed4240c27551c973bd369ef6d /src/webex/pages/logs.tsx
parent0469abd4a9c9270a1fdc962969e36e63699af8b4 (diff)
downloadwallet-core-3c882c44b5aba1ae397a2b89f99f4cdb82fbbbfa.tar.xz
fix problems found by newer TypeScript compiler
Diffstat (limited to 'src/webex/pages/logs.tsx')
-rw-r--r--src/webex/pages/logs.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webex/pages/logs.tsx b/src/webex/pages/logs.tsx
index 2853b2a06..c4fe670a2 100644
--- a/src/webex/pages/logs.tsx
+++ b/src/webex/pages/logs.tsx
@@ -55,9 +55,9 @@ interface LogsState {
logs: LogEntry[]|undefined;
}
-class Logs extends React.Component<any, LogsState> {
- constructor() {
- super();
+class Logs extends React.Component<{}, LogsState> {
+ constructor(props: {}) {
+ super({});
this.update();
this.state = {} as any;
}