Skip to content

Commit

Permalink
extandable-workflow: Fix issue with quotes
Browse files Browse the repository at this point in the history
Signed-off-by: gabriel-farache <[email protected]>
  • Loading branch information
gabriel-farache committed Oct 17, 2024
1 parent 6765367 commit 7a52e20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extendable-workflow/extendable-workflow.sw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ states:
- name: ChooseOnLanguage
type: switch
dataConditions:
- condition: ".languageInfo.language == 'French'"
- condition: .languageInfo.language == "French"
transition: GreetInFrench
name: Greet in french
- condition: ".languageInfo.language == 'Spanish'"
- condition: .languageInfo.language == "Spanish"
transition: GreetInSpanish
name: Greet in spanish
defaultCondition:
Expand Down

0 comments on commit 7a52e20

Please sign in to comment.