You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Argument of type { name: string; } is not assignable to parameter of type string | Column.
Property 'toJSON' is missing in type { name: string; } but required in type Column. ts(2345)
And
Argument of type { name: string; join: string; } is not assignable to parameter of type string | Column.
Property toJSON is missing in type { name: string; join: string; } but required in type Column. ts(2345)
It seems like Column and options need to be separately defined so that both can be used. The intention of #319 looks to be trying to handle returning a search.Column when using search.createColumn(options) or various other places that would return a Column, but the changes remove the ability to use Result.getValue(options).
Currently v2024.2.9 is the only affected release.
The text was updated successfully, but these errors were encountered:
#319 has broken Result.getValue(options).
Examples are using
Shows the following
And
It seems like
Column
andoptions
need to be separately defined so that both can be used. The intention of #319 looks to be trying to handle returning a search.Column when using search.createColumn(options) or various other places that would return aColumn
, but the changes remove the ability to use Result.getValue(options).Currently
v2024.2.9
is the only affected release.The text was updated successfully, but these errors were encountered: