Skip to content

Commit

Permalink
adds Text type
Browse files Browse the repository at this point in the history
  • Loading branch information
net-cscience-raphael committed Dec 18, 2024
1 parent b3bfafb commit 15bd7f6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class FieldLookupLateFilter(
val attribute = keys.map {
(when (values[it]) {
is Value.String -> Pair(it to (values[it] as Value.String), Value.of(value.toString()))
is Value.Text -> Pair(it to (values[it] as Value.Text), Value.of(value.toString()))
is Value.Boolean -> Pair(it to (values[it] as Value.Boolean), Value.of(value.toBoolean()))
is Value.Int -> Pair(it to (values[it] as Value.Int), Value.of(value.toInt()))
is Value.Long -> Pair(it to (values[it] as Value.Long), Value.of(value.toLong()))
Expand Down

0 comments on commit 15bd7f6

Please sign in to comment.