Skip to content
Snippets Groups Projects
Commit 28fbb1cb authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Merge branch '1341-bug-when-inheriting-from-section-with-overwritten-property' into 'develop'

Resolve "Bug when Inheriting from Section with Overwritten Property"

Closes #1341

See merge request !1098
parents 63e66053 9cbd6d9c
Branches
Tags
1 merge request!1098Resolve "Bug when Inheriting from Section with Overwritten Property"
Pipeline #157426 passed
......@@ -405,7 +405,8 @@ export class Metainfo {
}
}
sectionDef = await this._initSection(sectionDef)
sectionDef._allBaseSections.forEach(createAddProperties(true))
const reversedBaseSections = [...sectionDef._allBaseSections].reverse()
reversedBaseSections.forEach(createAddProperties(true))
createAddProperties(false)(sectionDef)
return Object.keys(results).map(key => results[key])
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment