Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update seed data #29

Merged
merged 6 commits into from
May 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small change
  • Loading branch information
dbajollari1 authored and MAPReiff committed May 2, 2023
commit 51551d134e3797a551ba193144cf64dccf1277ab
6 changes: 3 additions & 3 deletions views/ticketView.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@
<div class="fw-bold author">Author: {{this.createdBy}}</div>
{{this.content}}
</div>
<button onclick="setReplyID('{{this._id}}')" type="button" class="replyCommentBtn" value="{{this._id}}" data-bs-toggle="modal" data-bs-target="#commentModal"> <span class="material-symbols-outlined replyicon">reply_all</span> </button>
<button onclick="setReplyID('{{this._id}}')" type="button" class="replyCommentBtn" id="replyCommentBtn{{this._id}}" value="{{this._id}}" data-bs-toggle="modal" data-bs-target="#commentModal"> <span class="material-symbols-outlined replyicon">reply_all</span> </button>

{{#if this.allowDelete}}
<button class="deleteCommentBtn" id="deleteCommentBtn" value="{{this._id}}"><span class="material-symbols-outlined deleteicon"> delete
<button class="deleteCommentBtn" id="deleteCommentBtn{{this._id}}" value="{{this._id}}"><span class="material-symbols-outlined deleteicon"> delete
</span></button>
{{/if}}
<span class="badge text-bg-light rounded-pill">{{this.commentedOn}}</span>
Expand All @@ -64,7 +64,7 @@
&nbsp;&nbsp;{{this.content}}
</div>
{{#if this.allowDelete}}
<button class="deleteReplyBtn" id="deleteReplyBtn" value="{{this._id}}"><span class="material-symbols-outlined deleteicon"> delete
<button class="deleteReplyBtn" id="deleteReplyBtn{{this._id}}" value="{{this._id}}"><span class="material-symbols-outlined deleteicon"> delete
</span></button>
{{/if}}
<span class="badge text-bg-light rounded-pill">{{this.commentedOn}}</span>
Expand Down