forked from sct/overseerr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): temporary logs page to clear up confusion about it 40…
…4ing This commit also disables the "Run Now" buttons under Jobs until they actually work re sct#272
- Loading branch information
Showing
4 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { NextPage } from 'next'; | ||
import React from 'react'; | ||
import SettingsLayout from '../../components/Settings/SettingsLayout'; | ||
import SettingsLogs from '../../components/Settings/SettingsLogs'; | ||
|
||
const SettingsLogsPage: NextPage = () => { | ||
return ( | ||
<SettingsLayout> | ||
<SettingsLogs /> | ||
</SettingsLayout> | ||
); | ||
}; | ||
|
||
export default SettingsLogsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters