Bug 1523031 - Hero with lists show 1 too many items (#4739)

This commit is contained in:
Ed Lee 2019-01-25 18:53:46 -08:00 коммит произвёл GitHub
Родитель da8d50ed55
Коммит 7a5e9d4b52
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ export class Hero extends React.PureComponent {
feed={this.props.feed}
hasImages={true}
hasBorders={this.props.border === `border`}
items={this.props.items}
items={this.props.items - 1}
type={`Hero`} />
);