fix(labels): Code review issue

This commit is contained in:
Mystler 2026-03-16 18:21:08 +01:00
parent 5b5222b846
commit 2b94d96930

View File

@ -171,9 +171,9 @@ function PromotedAttributeCell(props: CellProps) {
);
}
const LABEL_MAPPINGS: Record<LabelType, HTMLInputTypeAttribute> = {
const LABEL_MAPPINGS: Record<LabelType, HTMLInputTypeAttribute | undefined> = {
text: "text",
textarea: "text",
textarea: undefined,
number: "number",
boolean: "checkbox",
date: "date",