Skip to content

Commit 1547a25

Browse files
authored
Fix argument order in json transformer (#223)
1 parent e4f9ac7 commit 1547a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Frontend/tools/JsonProcessorHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class JsonProcessorHelper {
7070

7171
processItemJson(jsonContent, isLocalized) {
7272
const publicItemSchema = Object.assign(new PublicItem, JSON.parse(jsonContent));
73-
const {internalItemSchema, tab} = PublicToInternalTransformer.toInternal(publicItemSchema, this.workloadName, this.productName, isLocalized);
73+
const {internalItemSchema, tab} = PublicToInternalTransformer.toInternal(publicItemSchema, this.workloadName, isLocalized, this.productName);
7474
this.internalFinalJson.artifacts.push(internalItemSchema);
7575
this.internalFinalJson.tabs.push(tab);
7676
}

0 commit comments

Comments
 (0)