(event)
| 22 | window.location.search = stringify(query); |
| 23 | } |
| 24 | handleProductionChange(event) { |
| 25 | const query = parse(window.location.search); |
| 26 | query.production = event.target.checked; |
| 27 | if (!query.production) { |
| 28 | delete query.production; |
| 29 | } |
| 30 | window.location.search = stringify(query); |
| 31 | } |
| 32 | handleFixtureChange(event) { |
| 33 | window.location.pathname = event.target.value; |
| 34 | } |