We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effc403 commit 95c5d4fCopy full SHA for 95c5d4f
backend/src/shared/services/formater.service.ts
@@ -90,9 +90,7 @@ export class FormatService {
90
if (addOn) {
91
if (typeof value === 'string' || value instanceof String) {
92
if (addOn == 'country')
93
- value = value
94
- .split(',')
95
- .map((d) => this.mapIsoToCountry(d.trim()));
+ value = value.split(',').map((d) => this.mapIsoToCountry(d.trim()));
96
if (addOn == 'language')
97
value = value
98
.split(',')
0 commit comments