diff --git a/components/list/Item.jsx b/components/list/Item.jsx index aa9c1b7f6..0c0d5a831 100644 --- a/components/list/Item.jsx +++ b/components/list/Item.jsx @@ -93,8 +93,8 @@ export default { const getPrefixCls = this.configProvider.getPrefixCls; const prefixCls = getPrefixCls('list', customizePrefixCls); const extra = getComponent(this, 'extra'); - const actions = getComponent(this, 'actions'); - + let actions = getComponent(this, 'actions'); + actions = actions && !Array.isArray(actions) ? [actions] : actions; const actionsContent = actions && actions.length > 0 && (