Merge branch 'master' into update-dependencies

This commit is contained in:
Juan Picado @jotadeveloper 2018-07-28 08:50:19 +02:00 committed by GitHub
commit 71cbbccfb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
<a name="3.4.1"></a>
## [3.4.1](https://github.com/verdaccio/verdaccio/compare/v3.4.0...v3.4.1) (2018-07-27)
### Bug Fixes
* solves dependency bug for one dependency ([#857](https://github.com/verdaccio/verdaccio/issues/857)) ([f9c9c44](https://github.com/verdaccio/verdaccio/commit/f9c9c44))
<a name="3.4.0"></a>
# [3.4.0](https://github.com/verdaccio/verdaccio/compare/v3.3.0...v3.4.0) (2018-07-27)

View File

@ -1,6 +1,6 @@
{
"name": "verdaccio",
"version": "3.4.0",
"version": "3.4.1",
"description": "Private npm repository server",
"author": {
"name": "Alex Kocharin",

View File

@ -30,7 +30,7 @@ const Dependencies = ({dependencies = {}}) => {
const dependenciesList = Object.keys(dependencies);
return (
<Module title="Dependencies" className={classes.dependenciesModule}>
{dependenciesList.length > 1 ? (
{dependenciesList.length > 0 ? (
renderDependenciesList(dependencies, dependenciesList)
) : (
<ModuleContentPlaceholder text="Zero Dependencies!" />