Skip to content

Commit

Permalink
inline mode short should be roughly equivalent with standard
Browse files Browse the repository at this point in the history
  • Loading branch information
dokempf committed Jul 25, 2024
1 parent cacb86e commit 80e6e8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/logic/RecursiveEasyDBDetailView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
{/if}
{:else if firstField.kind === "link" }
{#if firstField.output[output] }
{#if firstField.inline === "standard" }
{#if (firstField.inline === "standard") || (firstField.inline === "short") }
<Link field={firstField} data={data} table={table} condensed={condensed}/>
{:else if firstField.inline === "text" }
<Card horizontal class="max-w-full block">
Expand All @@ -175,7 +175,7 @@
{/await}
</Card>
{:else}
<NotImplemented message="Link elemenoutput mode '{firstField.inline}'' not yet implemented" />
<NotImplemented message="Link output mode '{firstField.inline}' not yet implemented" />
{/if}
{/if}
<svelte:self fields={fields.slice(1)} data={data} table={table} condensed={condensed} output={output}/>
Expand Down

0 comments on commit 80e6e8a

Please sign in to comment.