Fix old function call
This commit is contained in:
parent
799e2910c3
commit
a9af27e968
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ class ExpandTagRendering extends Conversion<
|
||||||
}
|
}
|
||||||
for (let foundTr of indirect) {
|
for (let foundTr of indirect) {
|
||||||
foundTr = Utils.Clone<any>(foundTr)
|
foundTr = Utils.Clone<any>(foundTr)
|
||||||
ctx.Merge(tagRenderingConfigJson["override"] ?? {}, foundTr)
|
ctx.MergeObjectsForOverride(tagRenderingConfigJson["override"] ?? {}, foundTr)
|
||||||
foundTr["id"] = tagRenderingConfigJson["id"] ?? foundTr["id"]
|
foundTr["id"] = tagRenderingConfigJson["id"] ?? foundTr["id"]
|
||||||
result.push(foundTr)
|
result.push(foundTr)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue