mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 06:08:00 -04:00
Fixed Bazarr logo on form auth page missing with base_url. #1823
This commit is contained in:
parent
0bfaf7a36c
commit
695edad3dd
1 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
import { useSystem } from "@/apis/hooks";
|
||||
import { useReduxStore } from "@/modules/redux/hooks/base";
|
||||
import { Environment } from "@/utilities";
|
||||
import { FunctionComponent, useState } from "react";
|
||||
import { Button, Card, Form, Image, Spinner } from "react-bootstrap";
|
||||
import { Navigate } from "react-router-dom";
|
||||
|
@ -29,7 +30,11 @@ const Authentication: FunctionComponent = () => {
|
|||
>
|
||||
<Card.Body>
|
||||
<Form.Group className="mb-5 d-flex justify-content-center">
|
||||
<Image width="64" height="64" src="/static/logo128.png"></Image>
|
||||
<Image
|
||||
width="64"
|
||||
height="64"
|
||||
src={`${Environment.baseUrl}/static/logo128.png`}
|
||||
></Image>
|
||||
</Form.Group>
|
||||
<Form.Group>
|
||||
<Form.Control
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue