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}
|
rowKey={(row) => row.time}
|
||||||
pagination={{ pageSize: pageSize || 20 }}
|
pagination={{ pageSize: pageSize || 20 }}
|
||||||
/>
|
/>
|
||||||
;
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ export default function Logs() {
|
|||||||
<a href={release.html_url}>{release.name}</a>
|
<a href={release.html_url}>{release.name}</a>
|
||||||
</Title>
|
</Title>
|
||||||
<Title level={5}>{new Date(release.created_at).toDateString()}</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} />
|
<AssetTable {...release.assets} />
|
||||||
</div>
|
</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">
|
<div className="chart-container">
|
||||||
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
||||||
</div>
|
</div>
|
||||||
<Table dataSource={clients} columns={columns} />;
|
<Table dataSource={clients} columns={columns} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user