Fix some components being rendered as pages
This commit is contained in:
16
web/pages/admin/config/server/components/ServerConfig.tsx
Normal file
16
web/pages/admin/config/server/components/ServerConfig.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import { EditInstanceDetails } from '../../../../../components/config/EditInstanceDetails2';
|
||||
|
||||
export default function ConfigServerDetails() {
|
||||
return (
|
||||
<div className="config-server-details-form">
|
||||
<p className="description">
|
||||
You should change your admin password 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">
|
||||
<EditInstanceDetails />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user