fix: (regression 0.57.7) admin/plugins: log panel not visible
Massimo Melina committed
Aug 27, 2025 at 19:00 UTC
2cb0e9f2ebf92c9111556073703eb320ba39d908
1 file changed
+1
-1
admin/src/dialog.ts
+1
-1
@@ -164,7 +164,7 @@ export async function formDialog<T>(
164
const { onChange, before, ...props } = typeof form === 'function' ? form(curValues) : form
165
if (props.save === false)
166
exposedValues = curValues
167
- return h(Fragment, {},
167
+ return h(Wrapper || Fragment, {},
168
before,
169
h(Form, {
170
...props,