Fix variable usage in Search Record workflow action (#16147)
Closes https://github.com/twentyhq/twenty/issues/16141 --------- Co-authored-by: prastoin <paul@twenty.com>
This commit is contained in:
committed by
GitHub
parent
2f25922f4c
commit
eaac569812
@@ -15,13 +15,13 @@ export type TagColor =
|
||||
|
||||
export class FieldMetadataDefaultOption {
|
||||
id?: string;
|
||||
position!: number;
|
||||
label!: string;
|
||||
value!: string;
|
||||
position: number;
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
export class FieldMetadataComplexOption extends FieldMetadataDefaultOption {
|
||||
color!: TagColor;
|
||||
color: TagColor;
|
||||
}
|
||||
|
||||
type FieldMetadataOptionsMapping = {
|
||||
|
||||
Reference in New Issue
Block a user