Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Sep 9, 2024
2 parents 49bbf02 + 926797e commit f27506f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/assets/js/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function HeliumPlannerAPI() {
"use strict";

this.GENERIC_ERROR_MESSAGE =
"Oops, an unknown error has occurred. If the issue persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.";
"Oops, an unknown error has occurred. If the issue persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.";

this.course_groups_by_user_id = {};
this.course_group = {};
Expand Down
6 changes: 3 additions & 3 deletions src/assets/js/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2062,13 +2062,13 @@ $(document).ready(function () {

if (helium.calendar.edit) {
if (helium.calendar.current_calendar_item.calendar_item_type === 0) {
$("#homework-error").html("The event is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.");
$("#homework-error").html("The event is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.");
} else {
$("#homework-error").html("The assignment is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.");
$("#homework-error").html("The assignment is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.");
}
}
else {
$("#homework-error").html("An unknown error occurred with attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.");
$("#homework-error").html("An unknown error occurred with attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.");
}
$("#homework-error").parent().show("fast");

Expand Down
2 changes: 1 addition & 1 deletion src/assets/js/classes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1599,7 +1599,7 @@ $(document).ready(function () {
this.on("errormultiple", function () {
$("#loading-course-modal").spin(false);

$("#course-error").html("The class is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.");
$("#course-error").html("The class is saved, but an error occurred while uploading attachments. If the error persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.");
$("#course-error").parent().show("fast");

$("a[href='#course-panel-tab-4']").tab("show");
Expand Down
2 changes: 1 addition & 1 deletion src/assets/js/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ $.ajax({
},
error: function (jqXHR, textStatus, errorThrown) {
var data = [{
'err_msg': "Oops, an unknown error has occurred. If the issue persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new?labels=bug\">open a ticket</a>.",
'err_msg': "Oops, an unknown error has occurred. If the issue persists, <a href=\"https://github.com/HeliumEdu/platform/issues/new/choose\">open a ticket</a>.",
'jqXHR': jqXHR,
'textStatus': textStatus,
'errorThrown': errorThrown
Expand Down

0 comments on commit f27506f

Please sign in to comment.