Skip to content

Commit

Permalink
Merge pull request #73 from shikshalokam/Ed-1326
Browse files Browse the repository at this point in the history
Project details page break error fix
  • Loading branch information
aks30 authored Feb 22, 2023
2 parents 2c24df6 + a59c852 commit 416ab2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion views/improvementProjectTaskTemplate.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
<p><%= data.response.description %></p>
</div>
</div>
<% if ((data.response.description.length + data.response.programName.length) > 210) {%>
<% if ((data.response.title.length + data.response.description.length + data.response.programName.length) > 220) {%>
<hr>
<% pageNo = pageNo + 1; %>
<div class="pageHeaderProject">
Expand Down
2 changes: 1 addition & 1 deletion views/improvementProjectTemplate.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
</div>
</div>

<% if ((data.response.description.length + data.response.programName.length) > 210) {%>
<% if ((data.response.title.length + data.response.description.length + data.response.programName.length) > 220) {%>
<hr>
<% pageNo = pageNo + 1; %>
<div class="pageHeaderProject">
Expand Down

0 comments on commit 416ab2b

Please sign in to comment.