Skip to content
Snippets Groups Projects
Commit bcb35743 authored by Moritz Langenstein's avatar Moritz Langenstein
Browse files

(ml5717) Union struct first merge sync fix

parent 2d6c6d74
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ export default function extendYUnion(Y) {
initType: function* YUnionInitializer(os, model) {
const union = model.union
const contents =
union !== null ? yield* this.getOperation(union).content[0] : "[]"
union !== null ? (yield* this.getOperation(union)).content[0] : "[]"
return new YUnion(os, model, contents)
},
createType: function YUnionCreator(os, model) {
......
Subproject commit c2a07807dfaa1e5e6b667d83aa4a7d348c759c0f
Subproject commit 44aa194d19217cbc1d8e0828cf8fdf39fc4dcdd3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment