Fixed conflicts

This commit is contained in:
Rahul
2020-03-12 00:00:56 +05:30
parent 49bb77c098
commit 7d465ca489
2 changed files with 10 additions and 12 deletions

View File

@@ -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",

View File

@@ -27,7 +27,9 @@
>
{{ !connectionState ? $t("connect") : $t("disconnect") }}
<span>
<i class="material-icons">{{ !connectionState ? "sync" : "sync_disabled" }}</i>
<i class="material-icons">{{
!connectionState ? "sync" : "sync_disabled"
}}</i>
</span>
</button>
</li>
@@ -92,7 +94,9 @@
>
{{ !connectionSSEState ? $t("start") : $t("stop") }}
<span>
<i class="material-icons">{{ !connectionSSEState ? "sync" : "sync_disabled" }}</i>
<i class="material-icons">{{
!connectionSSEState ? "sync" : "sync_disabled"
}}</i>
</span>
</button>
</li>
@@ -113,17 +117,10 @@
<tab :id="'socketio'" :label="$t('socketio')">
<socketio />
</tab>
<tab :id="'mqtt'" :label="$t('mqtt')">
<mqtt />
</tab>
</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>
</div>
</template>