mirror of
https://github.com/owncast/owncast.git
synced 2025-11-03 04:27:18 +08:00
fix for #408
This commit is contained in:
@ -182,7 +182,6 @@ export default function Home() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<LogTable logs={logsData} pageSize={5} />
|
||||
</div>
|
||||
);
|
||||
|
||||
@ -1,10 +1,8 @@
|
||||
import { Result, Card, Typography } from "antd";
|
||||
import { Result, Card } from "antd";
|
||||
import { MessageTwoTone, BulbTwoTone, BookTwoTone, PlaySquareTwoTone } from '@ant-design/icons';
|
||||
import OwncastLogo from "./components/logo"
|
||||
import LogTable from "./components/log-table";
|
||||
|
||||
|
||||
const { Title } = Typography;
|
||||
const { Meta } = Card;
|
||||
|
||||
export default function Offline({ logs = [] }) {
|
||||
@ -47,6 +45,7 @@ export default function Offline({ logs = [] }) {
|
||||
];
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="offline-content">
|
||||
<div className="logo-section">
|
||||
<Result
|
||||
@ -69,7 +68,8 @@ export default function Offline({ logs = [] }) {
|
||||
}
|
||||
</div>
|
||||
|
||||
<LogTable logs={logs} pageSize={5} />
|
||||
</div>
|
||||
<LogTable logs={logs} pageSize={5} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user