v0.28.0
This commit is contained in:
parent
53670b3745
commit
8913436575
|
|
@ -7,6 +7,8 @@ import { APP_VERSION } from '@/lib/version';
|
||||||
import { Button } from '@/components/ui/button';
|
import { Button } from '@/components/ui/button';
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
||||||
|
|
||||||
|
const REPOSITORY_URL = 'https://dream.scheller.ltd/null/BillTracker';
|
||||||
|
|
||||||
function UpdateBadge({ status, loading }) {
|
function UpdateBadge({ status, loading }) {
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return (
|
return (
|
||||||
|
|
@ -139,6 +141,9 @@ export default function AboutPage() {
|
||||||
<Button asChild>
|
<Button asChild>
|
||||||
<Link to="/release-notes">Release Notes</Link>
|
<Link to="/release-notes">Release Notes</Link>
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button asChild variant="outline">
|
||||||
|
<a href={REPOSITORY_URL} target="_blank" rel="noopener noreferrer">Repository</a>
|
||||||
|
</Button>
|
||||||
<Button asChild variant="outline">
|
<Button asChild variant="outline">
|
||||||
<Link to="/privacy">Privacy</Link>
|
<Link to="/privacy">Privacy</Link>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
|
||||||
|
|
@ -149,17 +149,6 @@ export default function LoginPage() {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{oidcEnabled && isAuthentikProvider && (
|
|
||||||
<div className="flex justify-center rounded-lg border border-border/70 bg-background/55 px-4 py-3">
|
|
||||||
<img
|
|
||||||
src="/img/auth.png"
|
|
||||||
alt="authentik"
|
|
||||||
className="h-16 w-16 object-contain"
|
|
||||||
loading="eager"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{oidcEnabled && (
|
{oidcEnabled && (
|
||||||
<Button
|
<Button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue