|
@@ -20,10 +20,10 @@ const ExportArchiveDataPage = dynamic(() => import('~/components/Admin/ExportArc
|
|
|
type Props = CommonProps & {
|
|
type Props = CommonProps & {
|
|
|
currentUser: any,
|
|
currentUser: any,
|
|
|
|
|
|
|
|
- nodeVersion: string,
|
|
|
|
|
- npmVersion: string,
|
|
|
|
|
- yarnVersion: string,
|
|
|
|
|
- installedPlugins: any,
|
|
|
|
|
|
|
+ // nodeVersion: string,
|
|
|
|
|
+ // npmVersion: string,
|
|
|
|
|
+ // yarnVersion: string,
|
|
|
|
|
+ // installedPlugins: any,
|
|
|
envVars: any,
|
|
envVars: any,
|
|
|
isAclEnabled: boolean,
|
|
isAclEnabled: boolean,
|
|
|
isSearchServiceConfigured: boolean,
|
|
isSearchServiceConfigured: boolean,
|
|
@@ -37,10 +37,10 @@ type Props = CommonProps & {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
-const AdminAppPage: NextPage<Props> = (props) => {
|
|
|
|
|
|
|
+const AdminExportDataArchivePage: NextPage<Props> = (props) => {
|
|
|
const { t } = useTranslation();
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
- const title = t('export_archive_data'), ;
|
|
|
|
|
|
|
+ const title = t('export_archive_data');
|
|
|
const injectableContainers: Container<any>[] = [];
|
|
const injectableContainers: Container<any>[] = [];
|
|
|
|
|
|
|
|
if (isClient()) {
|
|
if (isClient()) {
|
|
@@ -67,4 +67,4 @@ export const getServerSideProps: GetServerSideProps = async(context: GetServerSi
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
-export default AdminAppPage;
|
|
|
|
|
|
|
+export default AdminExportDataArchivePage;
|