diff --git a/sources/packages/forms/src/form-definitions/noticeofassessment.json b/sources/packages/forms/src/form-definitions/noticeofassessment.json
index 1c53c154b5..6625568cd8 100644
--- a/sources/packages/forms/src/form-definitions/noticeofassessment.json
+++ b/sources/packages/forms/src/form-definitions/noticeofassessment.json
@@ -346,7 +346,49 @@
"attr": ""
}
],
- "content": "Please note the funding you receive may differ from the eligible amount. The funding may be adjusted once confirmation of your outstanding principal balance of Part-time Canada Student loans and grants is received, or if any restrictions are added to your account after your initial assessment.",
+ "content": "Please note that the funding you receive may differ from the eligible amount.",
+ "type": "htmlelement",
+ "hideLabel": true,
+ "tableView": false
+ },
+ {
+ "key": "panelContent",
+ "conditional": {
+ "show": true,
+ "when": "offeringIntensity",
+ "eq": "Full Time"
+ },
+ "label": "Content",
+ "input": false,
+ "tag": "p",
+ "attrs": [
+ {
+ "value": "",
+ "attr": ""
+ }
+ ],
+ "content": "Adjustments may occur due to overawards on your account, as a result of tuition remittance requested by your institution, or due to restrictions applied to your account following the initial assessment.",
+ "type": "htmlelement",
+ "hideLabel": true,
+ "tableView": false
+ },
+ {
+ "key": "panelContent",
+ "conditional": {
+ "show": true,
+ "when": "offeringIntensity",
+ "eq": "Part Time"
+ },
+ "label": "Content",
+ "input": false,
+ "tag": "p",
+ "attrs": [
+ {
+ "value": "",
+ "attr": ""
+ }
+ ],
+ "content": "Adjustments may occur once confirmation of your outstanding principal balance of Part-time Canada Student loans and grants is received, as a result of tuition remittance requested by your institution, or due to restrictions applied to your account following the initial assessment.",
"type": "htmlelement",
"hideLabel": true,
"tableView": false
diff --git a/sources/packages/web/src/components/aest/students/ApplicationHeaderTitle.vue b/sources/packages/web/src/components/aest/students/ApplicationHeaderTitle.vue
index 6a81f128dd..3214cda6ea 100644
--- a/sources/packages/web/src/components/aest/students/ApplicationHeaderTitle.vue
+++ b/sources/packages/web/src/components/aest/students/ApplicationHeaderTitle.vue
@@ -7,7 +7,7 @@ import { defineComponent, ref, watchEffect } from "vue";
import { ApplicationSupplementalDataAPIOutDTO } from "@/services/http/dto";
import { ApplicationService } from "@/services/ApplicationService";
import DetailHeader from "@/components/generic/DetailHeader.vue";
-import { useFormatters } from "@/composables";
+import { useFormatters, useOffering } from "@/composables";
export default defineComponent({
components: { DetailHeader },
@@ -21,6 +21,7 @@ export default defineComponent({
const applicationData = ref();
const headerMap = ref>({});
const { dateOnlyLongPeriodString } = useFormatters();
+ const { mapOfferingIntensity } = useOffering();
const mapApplicationHeader = (
application: ApplicationSupplementalDataAPIOutDTO,
@@ -33,7 +34,7 @@ export default defineComponent({
application.applicationStartDate,
application.applicationEndDate,
),
- Type: application.applicationOfferingIntensity,
+ Type: mapOfferingIntensity(application.applicationOfferingIntensity),
};
};