({state})
| 120 | }, |
| 121 | |
| 122 | resendValues({state}) { |
| 123 | const websocket = internalState.websocket; |
| 124 | if (isNull(websocket) || websocket.isClosed()) { |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | forEachKeyValue(state.sentValues, (key, value) => sendParameterValue(key, value, websocket)); |
| 129 | } |
| 130 | }, |
| 131 | mutations: { |
| 132 | RESET_CONFIG(state) { |
nothing calls this directly
no test coverage detected