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

fix ticket issue with owners #47

Merged
merged 26 commits into from
May 6, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f2d40e8
Update login page button ARIA landmark
MAPReiff May 6, 2023
7eeec61
Update register page button ARIA landmark
MAPReiff May 6, 2023
8bb5720
Remove labels from removed rich text buttons as they caused issues no…
MAPReiff May 6, 2023
81e6f59
Update login page button ARIA landmark
MAPReiff May 6, 2023
e143bcf
Update register page button ARIA landmark
MAPReiff May 6, 2023
883c156
Remove labels from removed rich text buttons as they caused issues no…
MAPReiff May 6, 2023
0ef62b5
Merge branch 'tota11yFixes' of github.com:MAPReiff/cs546-group-44 int…
MAPReiff May 6, 2023
600e999
Rich text images now have a default alt text
MAPReiff May 6, 2023
8c77775
fixed invalid tag value
MAPReiff May 6, 2023
3467634
Fixed nave bar search
MAPReiff May 6, 2023
5cac8e6
fix ticket issue with owners
dbajollari1 May 6, 2023
6564ba3
Correct invalid HTML in make tickets
MAPReiff May 6, 2023
9695b88
Fix image alt text issue due to by previous change
MAPReiff May 6, 2023
c709875
Fix client side error checking for make ticket
MAPReiff May 6, 2023
970df1b
Further fixes to ticket js
MAPReiff May 6, 2023
f694b3e
Edit ticket now uses error checking
MAPReiff May 6, 2023
33bbf29
Update ticket route to pass users into makeTicket if an error is caug…
MAPReiff May 6, 2023
58a757f
Fix HTML validation on viewing tickets
MAPReiff May 6, 2023
5056233
Update edit ticket to match the same required values as make ticket
MAPReiff May 6, 2023
053a404
Fixed HTML validation on editTicket
MAPReiff May 6, 2023
623869d
Merge pull request #46 from MAPReiff/tota11yFixes
dbajollari1 May 6, 2023
fe3d034
Merge pull request #48 from MAPReiff/generalFixes
dbajollari1 May 6, 2023
2a92a17
fix ticket issue with no owners
dbajollari1 May 6, 2023
da6f663
fix ticket issue with owners
dbajollari1 May 6, 2023
29777c4
fix ticket issue with no owners
dbajollari1 May 6, 2023
1cbcf34
Merge branch 'fix-ticket' of github.com:MAPReiff/cs546-group-44 into …
MAPReiff May 6, 2023
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
Fixed HTML validation on editTicket
  • Loading branch information
MAPReiff committed May 6, 2023
commit 053a404cb40ea771302301c8ef16a8aa1c627b33
16 changes: 8 additions & 8 deletions views/editTicket.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@
<div class="infoCategory">
<i class="icon-info-sign"></i>
<span class="extra-info">
<p class="infoSubtitle">Service Request:</p><p class="categoryDescription">Inquire about product or service. These tickets are usually low-risk and do not require immediate action (ex: request new hardware or software, want to reset their password, or renew their software licenses)</p>
ervice Request: Inquire about product or service. These tickets are usually low-risk and do not require immediate action (ex: request new hardware or software, want to reset their password, or renew their software licenses)
<br>
<p class="infoSubtitle">Incident:</p> Point out a problem with product or service (ex: disruption to IT service)
Incident: Point out a problem with product or service (ex: disruption to IT service)
<br>
<p class="infoSubtitle">Problem:</p> For technical staff - problem that may cause an incident for a customer
Problem: For technical staff - problem that may cause an incident for a customer
<br>
<p class="infoSubtitle">Change Request:</p> Make changes to product or service (ex: permission changes)
Change Request: Make changes to product or service (ex: permission changes)
<br>
</span>
</div>
</div>
<select class="form-control" id="ticketCategory" name="ticketCategory" placeholder={{category}}>
<select class="form-control" id="ticketCategory" name="ticketCategory">
{{#select category}}
<option value="Service Request">Service Request</option>

Expand All @@ -65,10 +65,10 @@
</select><br>

<label class="" for="ticketDeadline">Deadline</label>
<input class="form-control" type="date" id="ticketDeadline" name="ticketDeadline" placeholder={{deadline}} value={{deadline}}><br>
<input class="form-control" type="date" id="ticketDeadline" name="ticketDeadline" value={{deadline}}><br>

<label class="" for="ticketPriority">Priority</label>
<select class="form-control" id="ticketPriority" name="ticketPriority" placeholder={{priority}}>
<select class="form-control" id="ticketPriority" name="ticketPriority">
{{#select priority}}
<option value="Critical">Critical</option>

Expand All @@ -85,7 +85,7 @@
<div class="infoCategory">
<i class="icon-info-sign"></i>
<span class="extra-info">
<p class="categoryDescription">Separate tags with commas.</p>
Separate tags with commas.
</span>
</div>
</div>
Expand Down