Skip to content

Commit

Permalink
REmove default values for body and result name for open ticket actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Jan 4, 2024
1 parent e0971c8 commit 04be869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/flow/routers/ticket/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const getOriginalAction = (settings: NodeEditorSettings): OpenTicket => {

export const nodeToState = (settings: NodeEditorSettings): TicketRouterFormState => {
let subject = { value: '@run.flow.name' };
let body = { value: '@results' };
let resultName = { value: 'Result' };
let body = { value: '' };
let resultName = { value: '' };
let assignee: FormEntry = { value: null };
let topic: FormEntry = { value: null };

Expand Down

0 comments on commit 04be869

Please sign in to comment.