Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ui/components/CardMetadata/Tags.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
</script>

{#if field.type === DataFieldType.String && field.repeated && Array.isArray(value)}
<TagList values={value || []} />
<TagList richText={field.typeConfig?.richText ?? false} values={value || []} />
{/if}
2 changes: 1 addition & 1 deletion src/ui/components/TagList/TagList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { app } from "src/lib/stores/obsidian";
import { InputDialogModal } from "src/ui/modals/inputDialog";
import RichTextTag from "src/ui/views/Table/components/DataGrid/GridCell/GridListCell/RichTextTag.svelte";
import RichTextTag from "src/ui/components/TagList/RichTextTag.svelte";

export let values: Optional<DataValue>[];
export let richText: boolean = false;
Expand Down
Loading