feat: add custom field type of image

This commit is contained in:
Carlos Valente
2025-02-19 20:29:13 +01:00
committed by Carlos Valente
parent d0b4c6a279
commit 570ff59cfc
18 changed files with 306 additions and 56 deletions
@@ -1,7 +1,7 @@
export type CustomFieldLabel = string;
export type CustomField = {
type: 'string';
type: 'string' | 'image';
colour: string;
label: CustomFieldLabel;
};