feat(base): add Formula entry to the property type picker

This commit is contained in:
Philipinho
2026-04-24 00:33:38 +01:00
parent 46f9292c05
commit 48d77a2b53
@@ -17,6 +17,7 @@ import {
IconUserEdit,
IconCheck,
IconSearch,
IconMathFunction,
} from "@tabler/icons-react";
import { BasePropertyType } from "@/features/base/types/base.types";
import { useTranslation } from "react-i18next";
@@ -43,6 +44,7 @@ const propertyTypes: {
{ type: "createdAt", icon: IconClockPlus, labelKey: "Created at" },
{ type: "lastEditedAt", icon: IconClockEdit, labelKey: "Last edited at" },
{ type: "lastEditedBy", icon: IconUserEdit, labelKey: "Last edited by" },
{ type: "formula", icon: IconMathFunction, labelKey: "Formula" },
];
type PropertyTypePickerProps = {