Skip to content

Commit

Permalink
feature(405666): made changes based on delete api route changes
Browse files Browse the repository at this point in the history
  • Loading branch information
VijayalakshmirSF4471 committed Dec 31, 2024
1 parent df976db commit e43dcaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export class WorkflowDiagramComponent implements AfterViewInit {
if(data.chatWorkflowEditorTypeId == 2) {
buttonCount = data.fieldOptionDetails?.length || 0;
}
data.chatWorkflowId = this.workflowID;
nodeModel.id= `node${data.id}`;
nodeModel.width= 200;
nodeModel.height= 150 + (buttonCount * 25);
Expand Down
1 change: 1 addition & 0 deletions src/app/models/appModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export interface RuleData2 {
// Define the main Workflow interface
export interface ChatWorkflowRulesData {
id: number;
chatWorkflowId: number;
successWorkflowId?: number | null;
successRuleId?: number | null;
chatWorkflowBlockId: number;
Expand Down

0 comments on commit e43dcaa

Please sign in to comment.