server url changes

This commit is contained in:
Tarun Singh 2021-11-04 22:25:29 -04:00
parent 2bcbeba384
commit 149015556b
2 changed files with 2 additions and 2 deletions

View File

@ -310,6 +310,6 @@ export default {
topicExplanation: "MQTT topic to monitor", topicExplanation: "MQTT topic to monitor",
successMessage: "Success Message", successMessage: "Success Message",
successMessageExplanation: "MQTT message that will be considered as success", successMessageExplanation: "MQTT message that will be considered as success",
url: "Server URL", serverUrl: "Server URL",
recent: "Recent", recent: "Recent",
}; };

View File

@ -122,7 +122,7 @@
<!-- For MQTT Type --> <!-- For MQTT Type -->
<template v-if="monitor.type === 'mqtt'"> <template v-if="monitor.type === 'mqtt'">
<div class="my-3"> <div class="my-3">
<label for="url" class="form-label">{{ $t("url") }}</label> <label for="url" class="form-label">{{ $t("serverUrl") }}</label>
<input id="url" v-model="monitor.url" type="text" class="form-control" pattern="https?://.+" required> <input id="url" v-model="monitor.url" type="text" class="form-control" pattern="https?://.+" required>
</div> </div>