|
|
|
@ -83,6 +83,24 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label class="form-label">{{ $t("Entry Page") }}</label>
|
|
|
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
|
<input id="entryPageYes" v-model="settings.entryPage" class="form-check-input" type="radio" name="statusPage" value="dashboard" required>
|
|
|
|
|
<label class="form-check-label" for="entryPageYes">
|
|
|
|
|
{{ $t("Dashboard") }}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
|
<input id="entryPageNo" v-model="settings.entryPage" class="form-check-input" type="radio" name="statusPage" value="statusPage" required>
|
|
|
|
|
<label class="form-check-label" for="entryPageNo">
|
|
|
|
|
{{ $t("Status Page") }}
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<button class="btn btn-primary" type="submit">
|
|
|
|
|
{{ $t("Save") }}
|
|
|
|
@ -180,17 +198,14 @@
|
|
|
|
|
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
|
|
|
|
{{ $t("Setup Notification") }}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
Uptime Kuma -
|
|
|
|
|
{{ $t("Version") }}: {{ $root.info.version }} -
|
|
|
|
|
<h2 class="mt-5">Info</h2>
|
|
|
|
|
|
|
|
|
|
{{ $t("Version") }}: {{ $root.info.version }} <br />
|
|
|
|
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank" rel="noopener">{{ $t("Check Update On GitHub") }}</a>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<NotificationDialog ref="notificationDialog" />
|
|
|
|
|
<TwoFADialog ref="TwoFADialog" />
|
|
|
|
@ -360,6 +375,10 @@ export default {
|
|
|
|
|
this.settings.searchEngineIndex = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.settings.entryPage === undefined) {
|
|
|
|
|
this.settings.entryPage = "dashboard";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.loaded = true;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|