mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00

* tweaks to offline state in admin viewers page If stream is offline, hide current viewers statistic and viewers table. Also, change wording for describing max viewers. * take out ant dark stylesheet, organize ant color overrides * remove ant dark css; cleanup ant overrides; format public-detail page * combine toggleswitch component style with textfield so layout can be shared * fix toggleswitch status message placement * - update styles for modals, collapses - move reset dir into its own component - assorted style cleanups ans consistencies * hide entire advanced section for resetyp if no yp * temp adjustments to video modal * temp comment out toggle switch use for later' * address PR comments * lint * update type * allow warnings during lint Co-authored-by: nebunez <uoj2y7wak869@opayq.net>
27 lines
865 B
TypeScript
27 lines
865 B
TypeScript
import { Typography } from 'antd';
|
|
import React from 'react';
|
|
import EditStorage from '../components/config/edit-storage';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigStorageInfo() {
|
|
return (
|
|
<>
|
|
<Title level={2} className="page-title">
|
|
Storage
|
|
</Title>
|
|
<p className="description">
|
|
Owncast supports optionally using external storage providers to distribute your video. Learn
|
|
more about this by visiting our{' '}
|
|
<a href="https://owncast.online/docs/storage/">Storage Documentation</a>.
|
|
</p>
|
|
<p className="description">
|
|
Configuring this incorrectly will likely cause your video to be unplayable. Double check the
|
|
documentation for your storage provider on how to configure the bucket you created for
|
|
Owncast.
|
|
</p>
|
|
<EditStorage />
|
|
</>
|
|
);
|
|
}
|