Problem
The Details tab on the network detail page renders network data as JSON.stringify(networkDetails, null, 2) in a <pre> block. For a user-facing tool aimed at computational chemists, this is the least useful presentation.
The codebase already depends on react-json-view-lite and uses it on the chemical systems and transformations detail pages.
Suggested fix
Use react-json-view-lite (or a more purpose-built structured view) for the network Details tab, consistent with the other detail pages.
Problem
The Details tab on the network detail page renders network data as
JSON.stringify(networkDetails, null, 2)in a<pre>block. For a user-facing tool aimed at computational chemists, this is the least useful presentation.The codebase already depends on
react-json-view-liteand uses it on the chemical systems and transformations detail pages.Suggested fix
Use
react-json-view-lite(or a more purpose-built structured view) for the network Details tab, consistent with the other detail pages.