motionrus opened a new issue, #25125:
URL: https://github.com/apache/superset/issues/25125

   To reproduce the problem, I created a dataset from the abc table
   ```
   create table public.abc
   (
     source_id varchar(255) not null,
     json jsonb,
     constraint pk_source_id primary key(source_id)
   );
   
   insert into abc (source_id, json) VALUES (1, '{"key": "value"}');
   ```
   
   then I checked that my column type was json.
   ![Снимок экрана 2023-08-30 в 16 42 
04](https://github.com/apache/superset/assets/14940768/cce23570-0ae4-4c16-a7ab-e48de6ec50cd)
   
   and when I get an object for handlebars, I get very upset that I get a 
string instead of an object.
   ![Снимок экрана 2023-08-30 в 16 48 
04](https://github.com/apache/superset/assets/14940768/d2311587-6b44-420e-ba2f-79261df24f47)
   
   and I can't do ``` <li>{{this.json.key}}</li> ```` because there is a string 
in the json 
   
   ```json
   {"source_id":"1","json":"{'key': 'value'}"}
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to