mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-28 01:04:05 +00:00
Fix and use null as authMethod None instead of empty string
This commit is contained in:
parent
f25ca96308
commit
d16be6fb7d
1 changed files with 3 additions and 2 deletions
|
@ -375,7 +375,7 @@
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="method" class="form-label">{{ $t("Method") }}</label>
|
<label for="method" class="form-label">{{ $t("Method") }}</label>
|
||||||
<select id="method" v-model="monitor.authMethod" class="form-select">
|
<select id="method" v-model="monitor.authMethod" class="form-select">
|
||||||
<option value="">
|
<option :value="null">
|
||||||
None
|
None
|
||||||
</option>
|
</option>
|
||||||
<option value="basic">
|
<option value="basic">
|
||||||
|
@ -386,7 +386,7 @@
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<template v-if="monitor.authMethod && monitor.authMethod !== '' ">
|
<template v-if="monitor.authMethod && monitor.authMethod !== null ">
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="basicauth" class="form-label">{{ $t("Username") }}</label>
|
<label for="basicauth" class="form-label">{{ $t("Username") }}</label>
|
||||||
<input id="basicauth-user" v-model="monitor.basic_auth_user" type="text" class="form-control" :placeholder="$t('Username')">
|
<input id="basicauth-user" v-model="monitor.basic_auth_user" type="text" class="form-control" :placeholder="$t('Username')">
|
||||||
|
@ -597,6 +597,7 @@ export default {
|
||||||
mqttPassword: "",
|
mqttPassword: "",
|
||||||
mqttTopic: "",
|
mqttTopic: "",
|
||||||
mqttSuccessMessage: "",
|
mqttSuccessMessage: "",
|
||||||
|
authMethod: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (this.$root.proxyList && !this.monitor.proxyId) {
|
if (this.$root.proxyList && !this.monitor.proxyId) {
|
||||||
|
|
Loading…
Reference in a new issue