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.
join.left
1 parent c8d347e commit e3b0ee7Copy full SHA for e3b0ee7
frontend/src/routes/joins/[slug]/overview/ConfProperties.svelte
@@ -95,6 +95,30 @@
95
</div>
96
{/if}
97
98
+ {#if conf?.left}
99
+ <div>
100
+ <div class="font-semibold py-2">
101
+ Left ({conf.left.entities ? 'entity' : conf.left.events ? 'event' : 'join'})
102
+ </div>
103
+ <div class="border border-neutral-400 rounded-md">
104
+ <Table density="compact">
105
+ <TableBody>
106
+ <TableRow class="border-neutral-400">
107
+ <TableCell>
108
+ <Self
109
+ conf={(conf.left.entities ??
110
+ conf.left.events ??
111
+ conf.left.joinSource) as typeof conf}
112
+ {includeUpstream}
113
+ />
114
+ </TableCell>
115
+ </TableRow>
116
+ </TableBody>
117
+ </Table>
118
119
120
+ {/if}
121
+
122
{#if conf?.rowIds}
123
<div>
124
<div class="font-semibold py-2">Row IDs</div>
0 commit comments