Fixed conflicts
This commit is contained in:
@@ -276,6 +276,7 @@ export default {
|
|||||||
notes: "Notes",
|
notes: "Notes",
|
||||||
socketio: "Socket.IO",
|
socketio: "Socket.IO",
|
||||||
event_name: "Event Name",
|
event_name: "Event Name",
|
||||||
|
mqtt: "MQTT",
|
||||||
mqtt_topic: "Topic",
|
mqtt_topic: "Topic",
|
||||||
mqtt_topic_title: "Publish / Subscribe topic",
|
mqtt_topic_title: "Publish / Subscribe topic",
|
||||||
mqtt_publish: "Publish",
|
mqtt_publish: "Publish",
|
||||||
|
|||||||
@@ -27,7 +27,9 @@
|
|||||||
>
|
>
|
||||||
{{ !connectionState ? $t("connect") : $t("disconnect") }}
|
{{ !connectionState ? $t("connect") : $t("disconnect") }}
|
||||||
<span>
|
<span>
|
||||||
<i class="material-icons">{{ !connectionState ? "sync" : "sync_disabled" }}</i>
|
<i class="material-icons">{{
|
||||||
|
!connectionState ? "sync" : "sync_disabled"
|
||||||
|
}}</i>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
@@ -92,7 +94,9 @@
|
|||||||
>
|
>
|
||||||
{{ !connectionSSEState ? $t("start") : $t("stop") }}
|
{{ !connectionSSEState ? $t("start") : $t("stop") }}
|
||||||
<span>
|
<span>
|
||||||
<i class="material-icons">{{ !connectionSSEState ? "sync" : "sync_disabled" }}</i>
|
<i class="material-icons">{{
|
||||||
|
!connectionSSEState ? "sync" : "sync_disabled"
|
||||||
|
}}</i>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
@@ -113,17 +117,10 @@
|
|||||||
<tab :id="'socketio'" :label="$t('socketio')">
|
<tab :id="'socketio'" :label="$t('socketio')">
|
||||||
<socketio />
|
<socketio />
|
||||||
</tab>
|
</tab>
|
||||||
|
<tab :id="'mqtt'" :label="$t('mqtt')">
|
||||||
|
<mqtt />
|
||||||
|
</tab>
|
||||||
</tabs>
|
</tabs>
|
||||||
<input id="tab-three" type="radio" name="options" />
|
|
||||||
<label for="tab-three">{{ $t("socketio") }}</label>
|
|
||||||
<div class="tab">
|
|
||||||
<socketio />
|
|
||||||
</div>
|
|
||||||
<input id="tab-four" type="radio" name="options" />
|
|
||||||
<label for="tab-four">{{ $t("mqtt") }}</label>
|
|
||||||
<div class="tab">
|
|
||||||
<mqtt />
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user