Add empty message for form actions (#12414)

<img width="503" alt="Capture d’écran 2025-06-02 à 15 55 36"
src="https://github.com/user-attachments/assets/9b3f60ae-7a13-45f8-aa87-ba32211e832f"
/>
This commit is contained in:
Thomas Trompette
2025-06-02 18:04:39 +02:00
committed by GitHub
parent e71aef5a3a
commit a508f4a4fb
6 changed files with 132 additions and 19 deletions

View File

@ -1,7 +1,6 @@
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { FieldMetadataType } from 'twenty-shared/types';
import { isDefined, isValidUuid } from 'twenty-shared/utils';
import { Repository } from 'typeorm';
import { v4 } from 'uuid';
@ -541,22 +540,7 @@ export class WorkflowVersionStepWorkspaceService {
valid: false,
settings: {
...BASE_STEP_DEFINITION,
input: [
{
id: v4(),
name: 'company',
label: 'Company',
placeholder: 'Select a company',
type: FieldMetadataType.TEXT,
},
{
id: v4(),
name: 'number',
label: 'Number',
placeholder: '1000',
type: FieldMetadataType.NUMBER,
},
],
input: [],
},
};
}