gnim 1.5.3 → 1.5.4
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/dist/gnim.gresource +0 -0
- package/dist/jsx/With.ts +1 -2
- package/package.json +1 -1
package/dist/gnim.gresource
CHANGED
|
Binary file
|
package/dist/jsx/With.ts
CHANGED
|
@@ -36,13 +36,12 @@ export function With<T, E extends JSX.Element>({
|
|
|
36
36
|
} else if (cleanup !== null) {
|
|
37
37
|
env.defaultCleanup(child)
|
|
38
38
|
}
|
|
39
|
-
|
|
40
|
-
if (scope) scope.dispose()
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
function callback(v: T) {
|
|
44
42
|
for (const child of fragment.children) {
|
|
45
43
|
remove(child)
|
|
44
|
+
if (scope) scope.dispose()
|
|
46
45
|
}
|
|
47
46
|
|
|
48
47
|
scope = new Scope(currentScope)
|