diff --git a/src/plugins/databases/index.js b/src/plugins/databases/index.js index 87011107a..6b2bc5d87 100644 --- a/src/plugins/databases/index.js +++ b/src/plugins/databases/index.js @@ -1083,12 +1083,13 @@ export default class DatabasesPlugin extends FlipperPlugin< buildSidebarRow = (key: string, val: any) => { let output = ''; try { - output = ( - - ); + const parsed = JSON.parse(val.props.children); + for (const key in parsed) { + try { + parsed[key] = JSON.parse(parsed[key]); + } catch (err) {} + } + output = ; } catch (error) { output = val; }