0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

fix: if author property is not part of the pkg body ui crash

This commit is contained in:
Juan Picado @jotadeveloper 2017-07-22 20:20:29 +02:00
parent 3a187945dc
commit acb6c8ca25
No known key found for this signature in database
GPG key ID: 18AC54485952D158

View file

@ -2,6 +2,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import {Tag} from 'element-react';
import {Link} from 'react-router-dom';
import isNil from 'lodash/isNil';
import classes from './package.scss';
@ -25,7 +26,7 @@ export default class Package extends React.Component {
}
renderAuthor(pkg) {
if (!pkg.author.name) {
if (isNil(pkg.author) || isNil(pkg.author.name)) {
return;
}