webapp: Fix: WaitRetstartView showed basic auth dialog
This commit is contained in:
parent
2a21e53422
commit
6113e0737b
@ -13,6 +13,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import BasePage from '@/components/BasePage.vue';
|
import BasePage from '@/components/BasePage.vue';
|
||||||
import CardElement from '@/components/CardElement.vue';
|
import CardElement from '@/components/CardElement.vue';
|
||||||
|
import { authHeader } from '@/utils/authentication';
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
@ -38,7 +39,7 @@ export default defineComponent({
|
|||||||
const remoteHostUrl = '/api/system/status';
|
const remoteHostUrl = '/api/system/status';
|
||||||
|
|
||||||
// Use a simple fetch request to check if the remote host is reachable
|
// Use a simple fetch request to check if the remote host is reachable
|
||||||
fetch(remoteHostUrl, { method: 'GET' })
|
fetch(remoteHostUrl, { headers: authHeader() })
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
// Check if the response status is OK (200-299 range)
|
// Check if the response status is OK (200-299 range)
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user