-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(my-history): add modal to confirm disable history queries #148
feat(my-history): add modal to confirm disable history queries #148
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job! 👏🏿 👏🏿
@@ -5,7 +5,7 @@ | |||
<DeviceDetector @DeviceProvided="$setLocaleDevice" :breakpoints="breakpoints" /> | |||
<Tagging /> | |||
<UrlHandler env="env" /> | |||
<XModal v-if="isOpen" :openEvents="openEvents" /> | |||
<XModal v-if="isOpen" :openEvents="openEvents" :closeEvents="closeEvents" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this change we can't close the XModal
now, as the Close
button is emitting UserClickedCloseEventsModal
instead of the newly configured UserClickedCloseX
event.
Modify desktop.vue
line 35:
<Close closingEvent="UserClickedCloseX" class="x-button--ghost x-padding--right-00">
Modify mobile.vue
line 16:
<Close
closingEvent="UserClickedCloseX"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job!
EX-6517