diff --git a/components/list/Item.tsx b/components/list/Item.tsx index 28391e88e1..e3cabc368f 100644 --- a/components/list/Item.tsx +++ b/components/list/Item.tsx @@ -107,7 +107,7 @@ const InternalItem = React.forwardRef((props, ref }; const prefixCls = getPrefixCls('list', customizePrefixCls); - const actionsContent = actions?.length && ( + const actionsContent = (actions && actions.length > 0) && (