Skip to content

Commit

Permalink
MQTT: Fix setup page on Firefox (#2046)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Gilles authored Mar 25, 2024
1 parent a3f5539 commit 5dd170f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion front/src/routes/integration/all/mqtt/setup-page/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class MqttNodePage extends Component {
this.setState(config);
};

saveConfiguration = async () => {
saveConfiguration = async e => {
e.preventDefault();
this.setState({
connectMqttStatus: RequestStatus.Getting,
mqttConnected: false,
Expand Down

0 comments on commit 5dd170f

Please sign in to comment.