diff --git a/webapp/components/search_results_item.jsx b/webapp/components/search_results_item.jsx index 1c7309f517..2773a8ee8b 100644 --- a/webapp/components/search_results_item.jsx +++ b/webapp/components/search_results_item.jsx @@ -4,6 +4,7 @@ import $ from 'jquery'; import PostMessageContainer from 'components/post_view/components/post_message_container.jsx'; import UserProfile from './user_profile.jsx'; +import FileAttachmentListContainer from './file_attachment_list_container.jsx'; import ProfilePicture from './profile_picture.jsx'; import TeamStore from 'stores/team_store.jsx'; @@ -161,6 +162,16 @@ export default class SearchResultsItem extends React.Component { compactClass = 'post--compact'; } + let fileAttachment = null; + if (post.file_ids && post.file_ids.length > 0) { + fileAttachment = ( + + ); + } + let message; let flagContent; let rhsControls; @@ -341,6 +352,7 @@ export default class SearchResultsItem extends React.Component {
{message} + {fileAttachment}