We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e64aa5 commit 6a03a7fCopy full SHA for 6a03a7f
core/trino-web-ui/src/main/resources/webapp-preview/src/components/QueryOverview.tsx
@@ -291,9 +291,13 @@ export const QueryOverview = () => {
291
{key}={value}
292
</div>
293
))}
294
- {Object.entries(session.catalogProperties).map(([key, value]) => (
295
- <div key={key}>
296
- {key}={value}
+ {Object.entries(session.catalogProperties).map(([catalog, catalogProperties]) => (
+ <div key={catalog}>
+ {Object.entries(catalogProperties).map(([key, value]) => (
297
+ <div key={catalog + key}>
298
+ {key}={value}
299
+ </div>
300
+ ))}
301
302
303
</>
0 commit comments