mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-08 05:51:47 -07:00
Add DB Version to About Page (#124)
This commit is contained in:
parent
b3f92ccaef
commit
e8d44d1cc2
5 changed files with 26 additions and 3 deletions
|
@ -15,6 +15,7 @@ class About extends Component {
|
|||
version,
|
||||
isMonoRuntime,
|
||||
runtimeVersion,
|
||||
migrationVersion,
|
||||
appData,
|
||||
startupPath,
|
||||
mode
|
||||
|
@ -38,6 +39,11 @@ class About extends Component {
|
|||
/>
|
||||
}
|
||||
|
||||
<DescriptionListItem
|
||||
title="DB Migration"
|
||||
data={migrationVersion}
|
||||
/>
|
||||
|
||||
<DescriptionListItem
|
||||
title="AppData directory"
|
||||
data={appData}
|
||||
|
@ -63,6 +69,7 @@ About.propTypes = {
|
|||
version: PropTypes.string,
|
||||
isMonoRuntime: PropTypes.bool,
|
||||
runtimeVersion: PropTypes.string,
|
||||
migrationVersion: PropTypes.number,
|
||||
appData: PropTypes.string,
|
||||
startupPath: PropTypes.string,
|
||||
mode: PropTypes.string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue