Skip to content

Commit

Permalink
feat : 기본값이 disalbed인 수정완료 버튼의 기본값 수정 - issue/#89-1
Browse files Browse the repository at this point in the history
  • Loading branch information
youngToMaturity committed Aug 9, 2021
1 parent ed67e26 commit 35f1aca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/css/group-edit.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
backdrop-filter: blur(2px);
}

.group-create-submit__btn {
.group-edit-submit__btn {
width: var(--submit-width);
height: var(--submit-height);
}
2 changes: 1 addition & 1 deletion public/js/group-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const cat_sub = document.querySelector('.group-edit-sub-category');
const sub_value = document.querySelector(
'.group-edit-sub-category__input'
).value;
const submitBtn = document.querySelector('.group-create-submit__btn');
const submitBtn = document.querySelector('.group-edit-submit__btn');
const editForm = document.querySelector('.group-edit-form');
const kickoutForm = document.querySelector('.group-edit-member__form');
const kickoutBtn = document.querySelector('.group-edit-member-action__kickout');
Expand Down
2 changes: 1 addition & 1 deletion views/group-edit.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<% } %>
</section>
<section class="group-edit-submit">
<button class="group-create-submit__btn" type="button" disabled>
<button class="group-edit-submit__btn" type="button">
수정완료
</button>
</section>
Expand Down

0 comments on commit 35f1aca

Please sign in to comment.