placementt-core 1.400.863 → 1.400.865
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.
- package/lib/tasksAndTips.js +2 -2
- package/lib/typeDefinitions.d.ts +1 -0
- package/package.json +1 -1
- package/src/tasksAndTips.ts +2 -2
- package/src/typeDefinitions.ts +1 -0
package/lib/tasksAndTips.js
CHANGED
|
@@ -382,7 +382,7 @@ const instituteTasks = {
|
|
|
382
382
|
if (cohorts?.trackAttendance === undefined && cohorts?.startPlacements && cohorts?.endPlacements && cohorts?.startPlacements <= twoWeeks && cohorts?.endPlacements >= today) {
|
|
383
383
|
return { promptCohortAttendanceTracking: {
|
|
384
384
|
dismissible: false,
|
|
385
|
-
severity: "
|
|
385
|
+
severity: "primary",
|
|
386
386
|
cohortId: cohorts.id,
|
|
387
387
|
title: "Set up attendance monitoring for placements.",
|
|
388
388
|
message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
|
|
@@ -395,7 +395,7 @@ const instituteTasks = {
|
|
|
395
395
|
if (cohort?.trackAttendance === undefined && cohort?.startPlacements && cohort?.endPlacements && cohort?.startPlacements <= twoWeeks && cohort?.endPlacements >= today) {
|
|
396
396
|
return {
|
|
397
397
|
dismissible: false,
|
|
398
|
-
severity: "
|
|
398
|
+
severity: "primary",
|
|
399
399
|
cohortId: id,
|
|
400
400
|
title: `Set up attendance monitoring for placements in ${cohort.name}.`,
|
|
401
401
|
message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
|
package/lib/typeDefinitions.d.ts
CHANGED
package/package.json
CHANGED
package/src/tasksAndTips.ts
CHANGED
|
@@ -450,7 +450,7 @@ const instituteTasks:InstituteTaskObject = {
|
|
|
450
450
|
if (cohorts?.trackAttendance === undefined && cohorts?.startPlacements && cohorts?.endPlacements && cohorts?.startPlacements <= twoWeeks && cohorts?.endPlacements >= today) {
|
|
451
451
|
return {promptCohortAttendanceTracking: {
|
|
452
452
|
dismissible: false,
|
|
453
|
-
severity: "
|
|
453
|
+
severity: "primary",
|
|
454
454
|
cohortId: cohorts.id,
|
|
455
455
|
title: "Set up attendance monitoring for placements.",
|
|
456
456
|
message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
|
|
@@ -464,7 +464,7 @@ const instituteTasks:InstituteTaskObject = {
|
|
|
464
464
|
if (cohort?.trackAttendance === undefined && cohort?.startPlacements && cohort?.endPlacements && cohort?.startPlacements <= twoWeeks && cohort?.endPlacements >= today) {
|
|
465
465
|
return {
|
|
466
466
|
dismissible: false,
|
|
467
|
-
severity: "
|
|
467
|
+
severity: "primary",
|
|
468
468
|
cohortId: id,
|
|
469
469
|
title: `Set up attendance monitoring for placements in ${cohort.name}.`,
|
|
470
470
|
message: "CareerThread can email employers throughout student placements, monitoring their attendance. Click to set up.",
|
package/src/typeDefinitions.ts
CHANGED