Skip to content

Commit e3b0ee7

Browse files
committed
feat(ConfProperties): Display join.left entity/event/joinSource
1 parent c8d347e commit e3b0ee7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

frontend/src/routes/joins/[slug]/overview/ConfProperties.svelte

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,30 @@
9595
</div>
9696
{/if}
9797

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+
</div>
119+
</div>
120+
{/if}
121+
98122
{#if conf?.rowIds}
99123
<div>
100124
<div class="font-semibold py-2">Row IDs</div>

0 commit comments

Comments
 (0)