-
Notifications
You must be signed in to change notification settings - Fork 500
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: add QR Code to ShareModal #2320
Conversation
Thank you for submitting this PR!
Getting other community members to do a review would be great help too on complex PRs (you can ask in the chats/forums). If you are unsure about something, just leave us a comment.
We currently aim to provide initial feedback/triaging within two business days. Please keep an eye on any labelling actions, as these will indicate priorities and status of your contribution. |
Thanks for throwing this together! I enabled CI to run and will be checking out the code |
@@ -9,8 +10,13 @@ import { Modal, ModalActions, ModalBody } from '../../../components/modal/Modal. | |||
const ShareModal = ({ t, tReady, onLeave, link, className, ...props }) => ( | |||
<Modal {...props} className={className} onCancel={onLeave} > | |||
<ModalBody title={t('shareModal.title')} Icon={ShareIcon}> |
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.
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.
@SgtPooki I'm not quite sure why CI got dependency check error on installed packages which is used in this pull request. Is there anything I need to fix furthur? (Ref: deps-check run attempt in Github Action) |
I will check it out on this run |
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.
code lgtm, will check CI failures on latest run and go from there
Description
react-qr-code
forShareModal
componentResult of updated
![image](https://private-user-images.githubusercontent.com/14361087/406635526-237e5420-361e-4fb4-8b77-afdbd76a37d0.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxMTMxMzgsIm5iZiI6MTczOTExMjgzOCwicGF0aCI6Ii8xNDM2MTA4Ny80MDY2MzU1MjYtMjM3ZTU0MjAtMzYxZS00ZmI0LThiNzctYWZkYmQ3NmEzN2QwLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA5VDE0NTM1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWVjMjU5YWFjNTFjNWUyZGUwNjljNGY5MmZkMjU3YjlkMmUxYWZiMTYxODRlNGQwNWM5N2UzMGEyM2Y5MDlhZmImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.fxERN5fKOxyzD9-seL2mV4m3hKEMRELsrBZP64kSIWM)
ShareModal
in storybook:Fixes #1358