mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-18 23:34:04 +02:00
lint issue fixed
This commit is contained in:
parent
09008a678a
commit
7253718860
1 changed files with 5 additions and 6 deletions
|
@ -97,7 +97,7 @@
|
||||||
<option v-if="!$root.info.isContainer" value="tailscale-ping">
|
<option v-if="!$root.info.isContainer" value="tailscale-ping">
|
||||||
Tailscale Ping
|
Tailscale Ping
|
||||||
</option>
|
</option>
|
||||||
<option value="rtsp">
|
<option value="rtsp">
|
||||||
RTSP
|
RTSP
|
||||||
</option>
|
</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
|
@ -518,8 +518,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-if="monitor.type === 'rtsp'">
|
||||||
<template v-if="monitor.type === 'rtsp'">
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="rtspUsername" class="form-label">RTSP {{ $t("Username") }}</label>
|
<label for="rtspUsername" class="form-label">RTSP {{ $t("Username") }}</label>
|
||||||
<input id="rtspUsername" v-model="monitor.rtspUsername" type="text" class="form-control">
|
<input id="rtspUsername" v-model="monitor.rtspUsername" type="text" class="form-control">
|
||||||
|
@ -1215,9 +1214,9 @@ const monitorDefaults = {
|
||||||
rabbitmqUsername: "",
|
rabbitmqUsername: "",
|
||||||
rabbitmqPassword: "",
|
rabbitmqPassword: "",
|
||||||
conditions: [],
|
conditions: [],
|
||||||
rtspUsername:"",
|
rtspUsername: "",
|
||||||
rtspPassword:"",
|
rtspPassword: "",
|
||||||
rtspPath:""
|
rtspPath: ""
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue