mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 16:27:45 +08:00
no log: Replace rest of Github link with constant value
This commit is contained in:
parent
337e781a57
commit
7cf5f00cee
1 changed files with 3 additions and 8 deletions
|
@ -11,6 +11,7 @@ import { Col, Container, Row } from "react-bootstrap";
|
|||
import { Helmet } from "react-helmet";
|
||||
import { systemUpdateStatus } from "../../@redux/actions";
|
||||
import { useReduxAction, useReduxStore } from "../../@redux/hooks/base";
|
||||
import { GithubRepoRoot } from "../../constants";
|
||||
import { useAutoUpdate } from "../../utilites/hooks";
|
||||
|
||||
interface InfoProps {
|
||||
|
@ -106,18 +107,12 @@ const SystemStatusView: FunctionComponent<Props> = () => {
|
|||
</Label>
|
||||
</CRow>
|
||||
<CRow title="Source">
|
||||
<Label
|
||||
icon={faGithub}
|
||||
link="https://github.com/morpheus65535/bazarr"
|
||||
>
|
||||
<Label icon={faGithub} link={GithubRepoRoot}>
|
||||
Bazarr on Github
|
||||
</Label>
|
||||
</CRow>
|
||||
<CRow title="Wiki">
|
||||
<Label
|
||||
icon={faWikipediaW}
|
||||
link="https://github.com/morpheus65535/bazarr/wiki"
|
||||
>
|
||||
<Label icon={faWikipediaW} link={`${GithubRepoRoot}/wiki`}>
|
||||
Bazarr Wiki
|
||||
</Label>
|
||||
</CRow>
|
||||
|
|
Loading…
Reference in a new issue