Skip to content

Commit

Permalink
Fix(web-twig): Use correct brackets when setting prop to false in Modal
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Oct 10, 2023
1 parent 2094a04 commit 6c8ffee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Modal id="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title" closeOnBackdropClick={{ false }}>
<Modal id="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title" closeOnBackdropClick={ false }>
<ModalDialog>
<ModalHeader modalId="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title">
Modal Title
Expand All @@ -19,4 +19,4 @@
</Button>
</ModalFooter>
</ModalDialog>
</Modal>
</Modal>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Modal
</Button>

<Modal id="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title" closeOnBackdropClick={{ false }}>
<Modal id="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title" closeOnBackdropClick={ false }>
<ModalDialog>
<ModalHeader modalId="example_disabled_backdrop_click" titleId="example_disabled_backdrop_click_title">
Modal Title
Expand Down Expand Up @@ -30,4 +30,4 @@
</Button>
</ModalFooter>
</ModalDialog>
</Modal>
</Modal>

0 comments on commit 6c8ffee

Please sign in to comment.