diff --git a/lang/en-US.js b/lang/en-US.js
index 745b0c41f..c5d6b93e1 100644
--- a/lang/en-US.js
+++ b/lang/en-US.js
@@ -276,6 +276,7 @@ export default {
notes: "Notes",
socketio: "Socket.IO",
event_name: "Event Name",
+ mqtt: "MQTT",
mqtt_topic: "Topic",
mqtt_topic_title: "Publish / Subscribe topic",
mqtt_publish: "Publish",
diff --git a/pages/realtime.vue b/pages/realtime.vue
index 7fd9c3ac6..0185976e7 100644
--- a/pages/realtime.vue
+++ b/pages/realtime.vue
@@ -27,7 +27,9 @@
>
{{ !connectionState ? $t("connect") : $t("disconnect") }}
- {{ !connectionState ? "sync" : "sync_disabled" }}
+ {{
+ !connectionState ? "sync" : "sync_disabled"
+ }}
@@ -92,7 +94,9 @@
>
{{ !connectionSSEState ? $t("start") : $t("stop") }}
- {{ !connectionSSEState ? "sync" : "sync_disabled" }}
+ {{
+ !connectionSSEState ? "sync" : "sync_disabled"
+ }}
@@ -113,17 +117,10 @@