From 1eeeadc92ce95d84ea7995a09559e72071d7f705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignas=20Lun=C4=97nas?= <34475426+lunenas@users.noreply.github.com> Date: Fri, 20 Mar 2026 15:36:12 +0200 Subject: [PATCH] feat: allow rich-text fields in SEO title and description Made-with: Cursor --- app/ycode/components/PageSettingsPanel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ycode/components/PageSettingsPanel.tsx b/app/ycode/components/PageSettingsPanel.tsx index 5c211cce..10d40db9 100644 --- a/app/ycode/components/PageSettingsPanel.tsx +++ b/app/ycode/components/PageSettingsPanel.tsx @@ -48,7 +48,7 @@ import { useAssetsStore } from '@/stores/useAssetsStore'; import RichTextEditor from './RichTextEditor'; import { Separator } from '@/components/ui/separator'; import { cn } from '@/lib/utils'; -import { getFieldIcon, IMAGE_FIELD_TYPES, SIMPLE_TEXT_FIELD_TYPES } from '@/lib/collection-field-utils'; +import { getFieldIcon, IMAGE_FIELD_TYPES, RICH_TEXT_FIELD_TYPES } from '@/lib/collection-field-utils'; export interface PageSettingsPanelHandle { checkUnsavedChanges: () => Promise; @@ -1602,7 +1602,7 @@ const PageSettingsPanel = React.forwardRef { const activeCollectionId = collectionId || currentPage?.settings?.cms?.collection_id || ''; const pageFields = fields[activeCollectionId] || []; @@ -1639,7 +1639,7 @@ const PageSettingsPanel = React.forwardRef { const activeCollectionId = collectionId || currentPage?.settings?.cms?.collection_id || ''; const pageFields = fields[activeCollectionId] || [];