mario-core 2.9.82-beta → 2.9.90-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -375,6 +375,7 @@ var how_my_teachers_can_help_me_learn = "How my teachers can help me learn";
375
375
  var about_my_learning = "About My Learning";
376
376
  var accommodations = "Accommodations";
377
377
  var goals = "Goals";
378
+ var this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it = "This goal is showing in the student's conference rubric. Are you sure to delete it?";
378
379
  var activity_circles = "Activity Circles";
379
380
  var friend_circles = "Friend Circles";
380
381
  var are_you_ready_to_learn = "Are you ready to learn?";
@@ -938,6 +939,7 @@ var lang_us = {
938
939
  about_my_learning: about_my_learning,
939
940
  accommodations: accommodations,
940
941
  goals: goals,
942
+ this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it: this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it,
941
943
  activity_circles: activity_circles,
942
944
  friend_circles: friend_circles,
943
945
  are_you_ready_to_learn: are_you_ready_to_learn,
@@ -1500,6 +1502,7 @@ var how_my_teachers_can_help_me_learn$1 = "How my teachers can help me learn";
1500
1502
  var about_my_learning$1 = "About My Learning";
1501
1503
  var accommodations$1 = "Accommodations";
1502
1504
  var goals$1 = "Goals";
1505
+ var this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it$1 = "This goal is showing in the student's conference rubric. Are you sure to delete it?";
1503
1506
  var activity_circles$1 = "Activity Circles";
1504
1507
  var friend_circles$1 = "Friend Circles";
1505
1508
  var are_you_ready_to_learn$1 = "Are you ready to learn?";
@@ -2063,6 +2066,7 @@ var lang_uk = {
2063
2066
  about_my_learning: about_my_learning$1,
2064
2067
  accommodations: accommodations$1,
2065
2068
  goals: goals$1,
2069
+ this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it: this_goal_is_showing_in_the_student_conference_rubric_are_you_sure_to_delete_it$1,
2066
2070
  activity_circles: activity_circles$1,
2067
2071
  friend_circles: friend_circles$1,
2068
2072
  are_you_ready_to_learn: are_you_ready_to_learn$1,
@@ -8139,7 +8143,7 @@ var NotificationList = function NotificationList() {
8139
8143
  return React.createElement("div", {
8140
8144
  className: "animated fadeIn",
8141
8145
  style: {
8142
- padding: "20px 40px"
8146
+ padding: "20px 40px 160px"
8143
8147
  }
8144
8148
  }, React.createElement("h5", {
8145
8149
  className: "mb-2"
@@ -10600,6 +10604,8 @@ var useUserList = function useUserList() {
10600
10604
  history.push(HOMEPAGE_PARENT$1);
10601
10605
  } else if (roles.includes("EduTeacher")) {
10602
10606
  history.push(HOMEPAGE_EDU_TEACHER$1);
10607
+ } else if (roles.includes("Counselor") || roles.includes("SecondaryTeacher")) {
10608
+ history.push(HOMEPAGE_TEACHER$1);
10603
10609
  }
10604
10610
  };
10605
10611