Merge pull request #13 from anoshenko/bug-fixes/fix-change-listeners-to-string-conversion

Fixed issue while converting change-listeners property value to a string
This commit is contained in:
Alexei Anoshenko 2025-08-11 14:53:07 +03:00 committed by GitHub
commit 469980428c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -956,9 +956,9 @@ func propertyValueToString(tag PropertyName, value any, indent string) string {
writeString(buffer, text)
buffer.WriteString(",\n")
}
}
buffer.WriteString(indent)
buffer.WriteRune('}')
}
return buffer.String()
case []popupButton: