Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2836 | Rev 2838 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2836 Rev 2837
Línea 16... Línea 16...
16
// Redux actions
16
// Redux actions
17
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
17
import { openShareModal } from "../../../redux/share-modal/shareModal.actions";
18
import { addNotification } from "../../../redux/notification/notification.actions";
18
import { addNotification } from "../../../redux/notification/notification.actions";
19
import { deleteFeed } from "../../../redux/feed/feed.actions";
19
import { deleteFeed } from "../../../redux/feed/feed.actions";
Línea 20... Línea 20...
20
 
20
 
Línea 21... Línea 21...
21
const FeedTemplate = ({ feed, owner_shared }) => {
21
const FeedTemplate = ({ feed, owner_shared, image }) => {
22
 
22
 
23
  // Destructuring feed data
23
  // Destructuring feed data
24
  const {
24
  const {
Línea 399... Línea 399...
399
            className={`form-comment-feed-${feed_unique}`}
399
            className={`form-comment-feed-${feed_unique}`}
400
            data-feed-unique={feed_unique}
400
            data-feed-unique={feed_unique}
401
            onSubmit={handleSubmit(submitCommentHandler)}
401
            onSubmit={handleSubmit(submitCommentHandler)}
402
          >
402
          >
403
            <div className={styles.feedCommentContainer}>
403
            <div className={styles.feedCommentContainer}>
-
 
404
              <img src={image} alt="User profile image" />
404
              <input
405
              <input
405
                className={styles.commentInput}
406
                className={styles.commentInput}
406
                type="text"
407
                type="text"
407
                name="comment"
408
                name="comment"
408
                id={`comment-${feed_unique}`}
409
                id={`comment-${feed_unique}`}