Show module UUID in DEBUG

This commit is contained in:
Davide 2024-12-08 22:56:29 +01:00
parent 52bda60b05
commit 5f20d791c2
No known key found for this signature in database
GPG Key ID: A48836171C759F5E

View File

@ -36,6 +36,9 @@ struct ModuleViewModifier<T>: ViewModifier where T: ModuleBuilder & Equatable {
func body(content: Content) -> some View {
Form {
content
#if DEBUG
UUIDSection(uuid: draft.id)
#endif
}
.themeForm()
.themeManualInput()