Skip to content

Commit

Permalink
Applied fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepalladino-apuliasoft committed Dec 9, 2024
1 parent dd85e5d commit f80c3e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private fun coerceString(value: StringValue, type: Type): Value {
if (value.isBlank()) {
type.blank()
} else {
DataStructValue(value.value)
DataStructValue(value.value.padEnd(6))
}
}
is CharacterType -> {
Expand Down

0 comments on commit f80c3e8

Please sign in to comment.