Add version to available plugins, too

This commit is contained in:
René Pfeuffer
2020-04-03 12:30:31 +02:00
parent e5452c06b9
commit d463c01ec3
2 changed files with 1 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Added ### Added
- Display plugin version for installed plugins ([#1089](https://github.com/scm-manager/scm-manager/pull/1089) - Display version for plugins ([#1089](https://github.com/scm-manager/scm-manager/pull/1089)
### Changed ### Changed
- Simplified collapse state management of the secondary navigation ([#1086](https://github.com/scm-manager/scm-manager/pull/1086) - Simplified collapse state management of the secondary navigation ([#1086](https://github.com/scm-manager/scm-manager/pull/1086)

View File

@@ -88,10 +88,7 @@ class PluginEntry extends React.Component<Props, State> {
}; };
createFooterLeft = (plugin: Plugin) => { createFooterLeft = (plugin: Plugin) => {
if (!this.isInstallable()) {
return <small>{plugin.version}</small>; return <small>{plugin.version}</small>;
}
return null;
}; };
createFooterRight = (plugin: Plugin) => { createFooterRight = (plugin: Plugin) => {