Fix typing error with NSI-question
This commit is contained in:
parent
60eeab9aa7
commit
695800b245
1 changed files with 5 additions and 6 deletions
|
@ -973,12 +973,11 @@ export class TagRenderingConfigUtils {
|
|||
}
|
||||
const clone: TagRenderingConfig = Object.create(config)
|
||||
// The original mappings get "priorityIf" set
|
||||
const oldMappingsCloned =
|
||||
clone.mappings?.map((m) => ({
|
||||
...m,
|
||||
addExtraTags: "nobrand=",
|
||||
priorityIf: m.priorityIf ?? TagUtils.Tag("id~*"),
|
||||
})) ?? []
|
||||
const oldMappingsCloned = clone.mappings?.map((m) => (<Mapping> {
|
||||
...m,
|
||||
addExtraTags: [new Tag("nobrand","")],
|
||||
priorityIf: m.priorityIf ?? TagUtils.Tag("id~*"),
|
||||
})) ?? [];
|
||||
clone.mappings = [...oldMappingsCloned, ...extraMappings]
|
||||
return clone
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue