Skip to content

Commit

Permalink
feat: #487 홈에서 am7/pm7 카테고리 기사는 am7/pm7 지정불가
Browse files Browse the repository at this point in the history
  • Loading branch information
jis-kim committed Aug 23, 2021
1 parent afb7262 commit 6ba2728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions saver-web/views/author/desking/chiefEditor.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<td class="table-body__cell">
<label for="am7"></label>
<input id="am7" type="checkbox" <%=article.am7 ? 'checked ' : '' %>
<% if (article.status !==3 && article.status !==4) { %>
<% if ((article.status !==3 && article.status !==4) || article.category === 'AMPM') { %>
disabled
<% } %>
/>
Expand All @@ -93,7 +93,7 @@
<td class="table-body__cell">
<label for="pm7"></label>
<input id="pm7" type="checkbox" <%=article.pm7 ? 'checked ' : '' %>
<% if (article.status !==3 && article.status !==4) { %>
<% if ((article.status !==3 && article.status !==4) || article.category === 'AMPM') { %>
disabled
<% } %>
/>
Expand Down

0 comments on commit 6ba2728

Please sign in to comment.