|
@@ -112,6 +112,12 @@
|
|
|
Formatting may be inconsistent from source.
|
|
|
</div>
|
|
|
{/if}
|
|
|
+
|
|
|
+ {#if item?.knowledge}
|
|
|
+ <div class="capitalize shrink-0">
|
|
|
+ {$i18n.t('Knowledge Base')}
|
|
|
+ </div>
|
|
|
+ {/if}
|
|
|
</div>
|
|
|
|
|
|
{#if edit}
|
|
@@ -172,9 +178,11 @@
|
|
|
/>
|
|
|
{/if}
|
|
|
|
|
|
- <div class="max-h-96 overflow-scroll scrollbar-hidden text-xs whitespace-pre-wrap">
|
|
|
- {item?.file?.data?.content ?? 'No content'}
|
|
|
- </div>
|
|
|
+ {#if item?.file?.data}
|
|
|
+ <div class="max-h-96 overflow-scroll scrollbar-hidden text-xs whitespace-pre-wrap">
|
|
|
+ {item?.file?.data?.content ?? 'No content'}
|
|
|
+ </div>
|
|
|
+ {/if}
|
|
|
{/if}
|
|
|
</div>
|
|
|
</div>
|