Skip to content

Commit

Permalink
feature(402661): corrected Text format enum
Browse files Browse the repository at this point in the history
  • Loading branch information
VijayalakshmirSF4471 committed Dec 24, 2024
1 parent 6751e54 commit 43f8af1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class WorkflowSidebarComponent {

textFormatDDLOptions: Array<{ text: string, value: number }>;
ddlTextFormatFields: Object = { text: 'text', value: 'value' };
public value = 2;
public value = 1;

@Input() nodeEditType!: number;
@Input() nodeBlockType!: number;
Expand Down
4 changes: 2 additions & 2 deletions src/app/models/enum.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export enum TextFormatEnum {
Text = 2,
Html = 1,
Text = 1,
Html = 2,
Markdown = 3
}

Expand Down

0 comments on commit 43f8af1

Please sign in to comment.