Index: vue/src/assets/images/devops/DevSupport/github.png =================================================================== diff -u -r6122153755cb500d3715ca1a73fa91b5695653b4 -red8b7425334200f1de0a5ee52502b08cc4bb39c1 --- vue/src/assets/images/devops/DevSupport/github.png (.../github.png) (revision 6122153755cb500d3715ca1a73fa91b5695653b4) +++ vue/src/assets/images/devops/DevSupport/github.png (.../github.png) (revision ed8b7425334200f1de0a5ee52502b08cc4bb39c1) @@ -4005,3 +4005,7 @@ .select-box button { margin: 0; } + +.chat-footer button { + margin-top: 0; +} Index: arms/js/detail_qna.js =================================================================== diff -u -r8fb7d84673ff13d426663f13ce1d14762ee1d559 -red8b7425334200f1de0a5ee52502b08cc4bb39c1 --- arms/js/detail_qna.js (.../detail_qna.js) (revision 8fb7d84673ff13d426663f13ce1d14762ee1d559) +++ arms/js/detail_qna.js (.../detail_qna.js) (revision ed8b7425334200f1de0a5ee52502b08cc4bb39c1) @@ -143,9 +143,9 @@ } function addReqComment() { - const content = document.getElementById("new_message").value; + const content = document.getElementById("new_message"); - if (!content) { + if (!content.value) { alert("질문을 작성 후 등록해주세요."); return; } @@ -160,7 +160,7 @@ c_req_link: selectedJsTreeId, c_type: "default", c_req_comment_sender: userName, - c_req_comment_contents: content + c_req_comment_contents: content.value }, statusCode: { 200: function () { @@ -171,6 +171,7 @@ getTotalCount(); getReqCommentList(1); //데이터 테이블 데이터 재 로드 + content.value = ""; } }, beforeSend: function () {}, @@ -248,15 +249,15 @@ messageBody.find(".edit").show(); } -function handleDeleteClick(id) { +function handleDeleteClick(c_id) { if (confirm("해당 글을 삭제하시겠습니까?")) { console.log("delete : " + c_id); $(".spinner").html(' 데이터를 로드 중입니다...'); $.ajax({ url: "/auth-user/api/arms/reqComment/removeNode.do", type: "DELETE", data: { - c_id: c_id + c_id }, statusCode: { 200: function () { @@ -303,7 +304,7 @@ url: "/auth-user/api/arms/reqComment/updateNode.do", type: "PUT", data: { - c_id: c_id, + c_id, c_req_comment_contents: commentText }, statusCode: {