Skip to content

Commit

Permalink
Merge pull request #242 from bcgov/ticdi-123
Browse files Browse the repository at this point in the history
DB_NAME_BCAL_CONTACT fix
  • Loading branch information
mgtennant authored Oct 18, 2024
2 parents 6db290d + d817c4b commit 3ecd442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/report/report.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class ReportController {
}
) {
const idir_username = user && user.idir_username ? user.idir_username : '';
const idir_full_name = user && user.given_name && user.family_name ? `${user.family_name}, ${user.given_name}` : '';
const idir_full_name = user && user.given_name && user.family_name ? `${user.given_name} ${user.family_name}` : '';
return new StreamableFile(
await this.reportService.generateReport(
data.dtid,
Expand Down

0 comments on commit 3ecd442

Please sign in to comment.