Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3950 Rev 3952
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='commentSection'>
-
 
91
            <div className={`comment-sec comment-sec`}>
90
        <div className='comment-list'>
92
                <ul>
91
            <ul>
93
                    {comments.reverse().map((comment) => {
92
                {comments.reverse().map((comment) => {
94
                        return (
93
                    return (
95
                            <FeedCommentSection.CommentTemplate
94
                        <FeedCommentSection.CommentTemplate
96
                                commentData={comment}
95
                            commentData={comment}
97
                                onDeleteHandler={deleteCommentHandler}
96
                            onDeleteHandler={deleteCommentHandler}
98
                                key={comment.unique}
-
 
99
                            />
97
                            key={comment.unique}
100
                        );
98
                        />
101
                    })}
99
                    );
102
                </ul>
100
                })}
103
            </div>
101
            </ul>
104
        </div>
102
        </div>
105
    )
103
    )
Línea 106... Línea 104...
106
}
104
}
Línea 152... Línea 150...
152
                                        <i className="fa fa-trash"></i>
150
                                        <i className="fa fa-trash"></i>
153
                                    </button>
151
                                    </button>
154
                                }
152
                                }
155
                            </span>
153
                            </span>
156
                        </div>
154
                        </div>
-
 
155
                        <p>{comment}</p>
157
                    </div>
156
                    </div>
158
                    <p>{comment}</p>
-
 
159
                </div>
157
                </div>
160
            </li >
158
            </li >
161
            <ConfirmModal
159
            <ConfirmModal
162
                show={showConfirmModal}
160
                show={showConfirmModal}
163
                onClose={() => setShowConfirmModal(false)}
161
                onClose={() => setShowConfirmModal(false)}