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:
parent
3a187945dc
commit
acb6c8ca25
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue