diff --git a/src/components/frontmatter-editor.tsx b/src/components/frontmatter-editor.tsx index 1e33ea0..6f30737 100644 --- a/src/components/frontmatter-editor.tsx +++ b/src/components/frontmatter-editor.tsx @@ -169,7 +169,7 @@ export function InlineFrontmatterEditor({ } > - + handleKeyChange(index, e.target.value)} onKeyDown={(e) => handleKeyDown(e, index)} placeholder="key" - className="min-w-24 border-none outline-none" + aria-label={`Property key ${index + 1}`} + className="min-w-24 border-none outline-none bg-transparent" /> {prop.type === "checkbox" ? ( handleValueChange(index, checked === true) } + aria-label={`Value for ${prop.key || `property ${index + 1}`}`} /> ) : prop.type === "number" ? ( ) : prop.type === "date" ? ( - + + + + + + +

Remove property

+
+
))}