feat(frontend): temporary logs page to clear up confusion about it 404ing

This commit also disables the "Run Now" buttons under Jobs until they actually work

re #272
This commit is contained in:
sct
2020-12-16 01:35:26 +00:00
parent db0a5c44f6
commit d9788c4aa9
4 changed files with 36 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ const SettingsJobs: React.FC = () => {
</div>
</Table.TD>
<Table.TD alignText="right">
<Button buttonType="primary">
<Button buttonType="primary" disabled>
{intl.formatMessage(messages.runnow)}
</Button>
</Table.TD>

View File

@@ -0,0 +1,17 @@
import React from 'react';
// We will localize this file when the complete version is released.
const SettingsLogs: React.FC = () => {
return (
<>
<div className="leading-loose text-gray-300 text-sm">
Logs page is still being built. For now, you can access your logs
directly in <code>stdout</code> (container logs) or looking in{' '}
<code>/app/config/logs/overseerr.logs</code>
</div>
</>
);
};
export default SettingsLogs;