We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 777bb4a commit 56c5aaaCopy full SHA for 56c5aaa
backend/src/shared/services/formater.service.ts
@@ -114,7 +114,7 @@ export class FormatService {
114
115
const isArrayOfValues = Array.isArray(value);
116
const subjectValues = isArrayOfValues ? value : [value];
117
- const finalValues = subjectValues.map(subjectValue => {
+ const finalValues = subjectValues.map((subjectValue) => {
118
if (mapto[subjectValue]) {
119
// If the mapping value is specific for a metadata field then apply it only to the specified metadata field,
120
// otherwise apply it to all
0 commit comments