@rbxts/app-forge 0.7.2-prototype.28 → 0.7.2-prototype.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/renders.luau +8 -2
- package/package.json +1 -1
package/out/renders.luau
CHANGED
|
@@ -116,8 +116,14 @@ do
|
|
|
116
116
|
if group ~= group then
|
|
117
117
|
return nil
|
|
118
118
|
end
|
|
119
|
-
local
|
|
120
|
-
|
|
119
|
+
local _result = render.entry.rules
|
|
120
|
+
if _result ~= nil then
|
|
121
|
+
_result = _result.parent
|
|
122
|
+
end
|
|
123
|
+
if not (_result ~= "" and _result) then
|
|
124
|
+
local _container = render.container
|
|
125
|
+
table.insert(load, _container)
|
|
126
|
+
end
|
|
121
127
|
end
|
|
122
128
|
for _k, _v in renderGroup do
|
|
123
129
|
_callback_3(_v, _k, renderGroup)
|