Passing objects to partial fails if the below format is used: `json.comments @post.comments, partial: 'comments/comment', as: :comment, show: false` It succeeds if locals option is used: `json.comments @post.comments, partial: 'comments/comment', locals: { show: false }, as: :comment`