We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf0aa3 commit bbd8661Copy full SHA for bbd8661
1 file changed
src/Components/list.luau
@@ -44,6 +44,8 @@ return function(baseScope: types.Scope, props: props)
44
return if use(PrimaryColor) ~= "Alternate" then use(props.BackgroundColor3) else use(InitialAlternateColor3)
45
end)
46
47
+ local Children = scope.EatValue(props, Fusion.Children) :: Fusion.Child
48
+
49
return scope:base(scope.CombineProperties({
50
ClassName = if CanvasGroup == false then "Frame" else "CanvasGroup",
51
Name = `TableContainer<{props.Name}>`,
@@ -99,6 +101,8 @@ return function(baseScope: types.Scope, props: props)
99
101
},
100
102
}
103
end),
104
105
+ Children,
106
107
108
0 commit comments