Browse Source

Reorder props to avoid TS error

master
Rick Watson 4 years ago
parent
commit
5269b47edc
  1. 4
      interface/src/components/RestController.tsx
  2. 2
      interface/src/components/WebSocketController.tsx

4
interface/src/components/RestController.tsx

@ -100,12 +100,12 @@ export function restController<D, P extends RestControllerProps<D>>(endpointUrl:
render() {
return <RestController
{...this.props as P}
{...this.state}
handleValueChange={this.handleValueChange}
setData={this.setData}
saveData={this.saveData}
loadData={this.loadData}
{...this.state}
{...this.props as P}
/>;
}

2
interface/src/components/WebSocketController.tsx

@ -119,13 +119,13 @@ export function webSocketController<D, P extends WebSocketControllerProps<D>>(ws
render() {
return <WebSocketController
{...this.props as P}
handleValueChange={this.handleValueChange}
setData={this.setData}
saveData={this.saveData}
saveDataAndClear={this.saveDataAndClear}
connected={this.state.connected}
data={this.state.data}
{...this.props as P}
/>;
}

Loading…
Cancel
Save