Skip to content

Commit

Permalink
Applied fix by adding render method
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepalladino-apuliasoft authored and lanarimarco committed Jan 10, 2025
1 parent d647dc8 commit f4eaee7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ data class UnlimitedStringValue(var value: String) : AbstractStringValue {
override fun copy() = UnlimitedStringValue(value)

override fun getWrappedString() = value

override fun render(): String {
return value
}
}

@Serializable
Expand Down

0 comments on commit f4eaee7

Please sign in to comment.