Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3952 Rev 3953
Línea 85... Línea 85...
85
            })
85
            })
86
            .catch((error) => addNotification({ style: "danger", msg: error.message }))
86
            .catch((error) => addNotification({ style: "danger", msg: error.message }))
87
    };
87
    };
Línea 88... Línea 88...
88
 
88
 
89
    return (
89
    return (
90
        <div className='comment-list'>
-
 
91
            <ul>
90
        <ul className='comment-list'>
92
                {comments.reverse().map((comment) => {
91
            {comments.reverse().map((comment) => {
93
                    return (
92
                return (
94
                        <FeedCommentSection.CommentTemplate
93
                    <FeedCommentSection.CommentTemplate
95
                            commentData={comment}
94
                        commentData={comment}
96
                            onDeleteHandler={deleteCommentHandler}
95
                        onDeleteHandler={deleteCommentHandler}
97
                            key={comment.unique}
-
 
98
                        />
96
                        key={comment.unique}
99
                    );
97
                    />
100
                })}
98
                );
101
            </ul>
99
            })}
102
        </div>
100
        </ul>
103
    )
101
    )
Línea 104... Línea 102...
104
}
102
}