Fix radio button and add description

This commit is contained in:
Louis Lam 2022-07-31 18:11:40 +08:00
parent 3fa5dfc873
commit 16d6885a88
2 changed files with 9 additions and 4 deletions

View File

@ -103,12 +103,12 @@
v-model="settings.trustProxy" v-model="settings.trustProxy"
class="form-check-input" class="form-check-input"
type="radio" type="radio"
name="flexRadioDefault" name="trustProxyYes"
:value="true" :value="true"
required required
/> />
<label class="form-check-label" for="trustProxyYes"> <label class="form-check-label" for="trustProxyYes">
{{ $t("Trust 'X-Forwarded-*' headers") }} {{ $t("Yes") }}
</label> </label>
</div> </div>
<div class="form-check"> <div class="form-check">
@ -121,10 +121,14 @@
:value="false" :value="false"
required required
/> />
<label class="form-check-label" for="trustProxyYes"> <label class="form-check-label" for="trustProxyNo">
{{ $t("Don't trust 'X-Forwarded-*' headers") }} {{ $t("No") }}
</label> </label>
</div> </div>
<div class="form-text">
{{ $t("trustProxyDescription") }}
</div>
</div> </div>
<div> <div>

View File

@ -540,4 +540,5 @@ export default {
"Domain": "Domain", "Domain": "Domain",
"Workstation": "Workstation", "Workstation": "Workstation",
disableCloudflaredNoAuthMsg: "You are in No Auth mode, password is not require.", disableCloudflaredNoAuthMsg: "You are in No Auth mode, password is not require.",
trustProxyDescription: "Trust 'X-Forwarded-*' headers. If you want to get the correct client IP and your Uptime Kuma is behind such as Nginx or Apache, you should enable this.",
}; };