a122ee6c42
* 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>
23 lines
702 B
TypeScript
23 lines
702 B
TypeScript
import React from 'react';
|
|
import { Typography } from 'antd';
|
|
import EditServerDetails from '../components/config/edit-server-details';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigServerDetails() {
|
|
return (
|
|
<div className="config-server-details-form">
|
|
<Title level={2} className="page-title">
|
|
Server Settings
|
|
</Title>
|
|
<p className="description">
|
|
You should change your stream key from the default and keep it safe. For most people
|
|
it's likely the other settings will not need to be changed.
|
|
</p>
|
|
<div className="form-module config-server-details-container">
|
|
<EditServerDetails />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|