Skip to content

Commit

Permalink
Merge pull request #1082 from bcgov/fix/EDX-1859
Browse files Browse the repository at this point in the history
EDX-1859 - Adds string check in index.js to make string boolean
  • Loading branch information
mightycox authored Oct 5, 2023
2 parents 236dd5d + 7600112 commit aaf8b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ nconf.defaults({
frontendConfig: {
bannerEnvironment: process.env.BANNER_ENVIRONMENT,
bannerColor: process.env.BANNER_COLOR,
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY
disableSdcFunctionality: process.env.DISABLE_SDC_FUNCTIONALITY === 'true'
},
clamav: {
host: process.env.CLAMAV_HOST,
Expand Down

0 comments on commit aaf8b8e

Please sign in to comment.