Browse Source

Remove random semicolons

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
99cefa19c8
  1. 1
      web/pages/components/log-table.tsx
  2. 4
      web/pages/upgrade.tsx
  3. 2
      web/pages/viewer-info.tsx

1
web/pages/components/log-table.tsx

@ -77,7 +77,6 @@ export default function LogTable({ logs, pageSize }: Props) { @@ -77,7 +77,6 @@ export default function LogTable({ logs, pageSize }: Props) {
rowKey={(row) => row.time}
pagination={{ pageSize: pageSize || 20 }}
/>
;
</div>
);
}

4
web/pages/upgrade.tsx

@ -38,7 +38,7 @@ export default function Logs() { @@ -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) { @@ -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" />
}

2
web/pages/viewer-info.tsx

@ -127,7 +127,7 @@ export default function ViewersOverTime() { @@ -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…
Cancel
Save