summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/post_attachment_list.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/components/post_view/post_attachment_list.jsx
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/components/post_view/post_attachment_list.jsx')
-rw-r--r--webapp/components/post_view/post_attachment_list.jsx41
1 files changed, 0 insertions, 41 deletions
diff --git a/webapp/components/post_view/post_attachment_list.jsx b/webapp/components/post_view/post_attachment_list.jsx
deleted file mode 100644
index ce60a0155..000000000
--- a/webapp/components/post_view/post_attachment_list.jsx
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import PostAttachment from './post_attachment.jsx';
-
-import React from 'react';
-import PropTypes from 'prop-types';
-
-export default class PostAttachmentList extends React.PureComponent {
- static propTypes = {
-
- /**
- * The post id
- */
- postId: PropTypes.string.isRequired,
-
- /**
- * Array of attachments to render
- */
- attachments: PropTypes.array.isRequired
- }
-
- render() {
- const content = [];
- this.props.attachments.forEach((attachment, i) => {
- content.push(
- <PostAttachment
- attachment={attachment}
- postId={this.props.postId}
- key={'att_' + i}
- />
- );
- });
-
- return (
- <div className='attachment_list'>
- {content}
- </div>
- );
- }
-}