Skip to content

Commit

Permalink
Merge pull request #4034 from cisagov/bug/ise-comma-in-date
Browse files Browse the repository at this point in the history
Bug/ise comma in date
  • Loading branch information
randywoods authored Aug 30, 2024
2 parents 343c5fb + 910bd7d commit caceae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSETWebNg/src/app/services/ncua.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export class NCUAService {
"charter": this.information.charter,
"examiner": this.information.assessor_Name.trim(),
"effectiveDate": this.reportSvc.applyJwtOffset(this.information.assessment_Effective_Date, 'date'), //DateTime.fromISO(this.information.assessment_Effective_Date),
"creationDate": this.reportSvc.applyJwtOffset(this.information.assessment_Creation_Date, 'datetime'),
"creationDate": this.reportSvc.applyJwtOffset(this.information.assessment_Creation_Date, 'datetime').replace(',',''),
// "stateLed": this.assessmentSvc.assessment.isE_StateLed,
"examLevel": this.examLevel,
// "region": this.assessmentSvc.assessment.regionCode,
Expand Down

0 comments on commit caceae5

Please sign in to comment.