mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Remove random semicolons
This commit is contained in:
parent
6cafb29a8f
commit
99cefa19c8
@ -77,7 +77,6 @@ export default function LogTable({ logs, pageSize }: Props) {
|
||||
rowKey={(row) => row.time}
|
||||
pagination={{ pageSize: pageSize || 20 }}
|
||||
/>
|
||||
;
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ export default function Logs() {
|
||||
<a href={release.html_url}>{release.name}</a>
|
||||
</Title>
|
||||
<Title level={5}>{new Date(release.created_at).toDateString()}</Title>
|
||||
<ReactMarkdown>{release.body}</ReactMarkdown>;<h3>Downloads</h3>
|
||||
<ReactMarkdown>{release.body}</ReactMarkdown><h3>Downloads</h3>
|
||||
<AssetTable {...release.assets} />
|
||||
</div>
|
||||
);
|
||||
@ -68,6 +68,6 @@ function AssetTable(assets) {
|
||||
},
|
||||
];
|
||||
|
||||
return <Table dataSource={data} columns={columns} rowKey="id" size="large" />;
|
||||
return <Table dataSource={data} columns={columns} rowKey="id" size="large" />
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ export default function ViewersOverTime() {
|
||||
<div className="chart-container">
|
||||
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
||||
</div>
|
||||
<Table dataSource={clients} columns={columns} />;
|
||||
<Table dataSource={clients} columns={columns} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user