From afdbe8d7d28134e6de949cbf60b6a6aa2c354e9d Mon Sep 17 00:00:00 2001 From: Brett <43300357+MathesonBrett@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:10:53 -0700 Subject: [PATCH] Some of Matt's changes --- .../my-assessments.component.ts | 5 ++-- CSETWebNg/src/assets/settings/config.ISE.json | 29 +++++++++++++++++-- 2 files changed, 29 insertions(+), 5 deletions(-) diff --git a/CSETWebNg/src/app/initial/my-assessments/my-assessments.component.ts b/CSETWebNg/src/app/initial/my-assessments/my-assessments.component.ts index 1b757d024c..216b95e34a 100644 --- a/CSETWebNg/src/app/initial/my-assessments/my-assessments.component.ts +++ b/CSETWebNg/src/app/initial/my-assessments/my-assessments.component.ts @@ -422,9 +422,8 @@ export class MyAssessmentsComponent implements OnInit { //translates assessment.lastModifiedDate to the system time, without changing lastModifiedDate systemTimeTranslator(lastModifiedDate: any) { - let localDate = moment.utc(lastModifiedDate).local(true).format('ll'); - let localTime = moment.utc(lastModifiedDate).local(true).format('h:mm:ss A'); - return localDate + ', ' + localTime; + let localDate = moment.utc(lastModifiedDate).local(true).format('ll LTS'); + return localDate; } exportAllAssessments() { diff --git a/CSETWebNg/src/assets/settings/config.ISE.json b/CSETWebNg/src/assets/settings/config.ISE.json index 9144abd2a8..b2a645856c 100644 --- a/CSETWebNg/src/assets/settings/config.ISE.json +++ b/CSETWebNg/src/assets/settings/config.ISE.json @@ -1,6 +1,31 @@ { + "appCode": "ACET", + "installationMode": "ACET", + "galleryLayout": "ISE", "behaviors": { + "defaultTitle":"ACET", + "showModuleBuilder": true, + "showAssessmentDocuments": false, + "showAggregation": true, + "showAnalytics": false, + "showAnalyticsAtTheEnd": false, + "showMenuLanguagePicker": true, + "showAnalyticsColumnOnLanding": false, + "splashPageHTML": "dist/assets/splashACET.html", + "showFacilityName": false, + "showCityName": true, + "showStateName": true, + "showContacts": true, + "showOrganizationName": true, + "showBusinessAgencyName": true, + "showCriticalService": true, "showExportOnReports": false, - "showMenuLanguagePicker": true - } + "showFeedback": false, + "showDisclaimer": false, + "independentSuppGuidance": true + }, + "languageOptions": [ + { "value": "en", "name": "English" }, + { "value": "es", "name": "EspaƱol" } + ] } \ No newline at end of file