Closed Bruutal closed 6 days ago
@Bruutal Thank you for the open issue
What data type is contained in the field you use for string_field
Can you please provide more details using “table view” mode (screenshot) ?
Thank you
For this issue, remedy before update is that use your query to assign "" or " " if value is NULL. I think it would work. @Bruutal
@Bruutal Thank you for the open issue
What data type is contained in the field you use for
string_field
Can you please provide more details using “table view” mode (screenshot) ?Thank you
It is a string type :
But it occurs with other data types aswell (numeric, text, etc)
For this issue, remedy before update is that use your query to assign "" or " " if value is NULL. I think it would work. @Bruutal
I know, it works just fine by using coalesce(string_field,'') as string_field, but it is a bit painful when I have to do it on big queries😊
Datasource type : PostreSQL database query exemple : select null as string_field
Layout config :
Edit config :
Error :
When I click edit on a row containing an editable string field and the current string value is null, I get the error "Cannot read properties of null (reading 'replaceAll')". The error appears whether there is an update request or not.