-
Notifications
You must be signed in to change notification settings - Fork 127
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
enable and disable SUPPORT_URL with environment variable #276
Conversation
Thanks for the pull request, @isankadn! Please note that it may take us up to several weeks or months to complete a review and merge your PR. Feel free to add as much of the following information to the ticket as you can:
All technical communication about the code itself will be done via the GitHub pull request interface. As a reminder, our process documentation is here. Please let us know once your PR is ready for our review and all tests are green. |
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.
Thanks @isankadn! I haven't actually tested this yet, but in the meantime, can you please:
- Create a PR to add SUPPORT_URL to the
.env*
files in frontend-template-application - Add an explanation of what this does to this repo's README?
@arbrandes Thank you very much! Here is the pull request to frontend-template-application openedx/frontend-template-application#499 |
Thanks for helping @arbrandes ! |
@isankadn, thanks! However, it looks like we're failing some tests. Can you look into it? Also, please refer to the automated message above: we need you to sign the CLA before accepting your code. Mind doing that? Thanks! |
@arbrandes Thank you for your comment, sure I can sign. and the same time, I'm representing ABC for this, I think @DeanJayMathew has already taken care of that. and I will look into this error as well. thx.
|
@arbrandes fixed the linting issue. and pushed. |
Codecov ReportBase: 61.87% // Head: 62.12% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #276 +/- ##
==========================================
+ Coverage 61.87% 62.12% +0.25%
==========================================
Files 15 15
Lines 299 301 +2
Branches 70 71 +1
==========================================
+ Hits 185 187 +2
Misses 112 112
Partials 2 2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Hi @michelle Philbrick ***@***.***>
Thank you for following up on this.
@isanka Wijerathne ***@***.***> (
https://github.com/isankadn, ***@***.***) should be covered under
the organisational contributors agreement I signed on behalf of ABC ONLINE
COURSES LIMITED.
Dean Jay Mathew
Director, ABC Online Courses Limited
Trusted Open edX® Service Providers since 2015
Schedule a meeting with me: https://calendly.com/abconlinecourses
View Our Website <http://www.abconlinecourses.com>
Tel.: +441225293341
Registered Address: Chestnut House
***@***.***,-2.1459131,15z/data=!3m1!4b1!4m8!1m2!2m1!1schestnut+house+53d+beanacre+sn127py!3m4!1s0x48717c9105a9d3d7:0x15804f821ad57207!8m2!3d51.3980641!4d-2.1374675>
(Wiltshire, England, UK)
*Legal Disclaimer: **This email and any files transmitted with it are
confidential and intended solely for the use of the individual or entity to
whom they are addressed and intended. If you have received this email in
error please notify the sender or system manager immediately. This message
contains confidential information and is intended only for the individual
named. If you are not the named addressee you should not disseminate,
distribute or copy this e-mail. Please notify the sender immediately by
e-mail if you have received this e-mail by mistake and delete this e-mail
from your system. If you are not the intended recipient you are notified
that disclosing, copying, distributing or taking any action in reliance on
the contents of this information is strictly prohibited.*
…On Wed, Jan 11, 2023 at 8:38 AM Michelle Philbrick ***@***.***> wrote:
Hi @isankadn <https://github.com/isankadn>! Tests have been enabled for
this pull request, though you'll still need to fill out a CLA form
<https://openedx.atlassian.net/wiki/spaces/COMM/pages/941457737/How+to+start+contributing+to+the+Open+edX+code+base>.
Please let us know if you plan to pursue this pull request. Thanks!
—
Reply to this email directly, view it on GitHub
<#276 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACMGDW6QAMVOXC24ZKGVGZ3WRYFIFANCNFSM6AAAAAARYAOAWU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Thanks @DeanJayMathew! I'm not seeing @isankadn listed on our end. Let me follow-up internally to make sure I'm not missing anything. |
@mphilbrick211 I see him in the CLA file now. @isankadn I also notice there are some commit lint issues, we use conventional commits as defined here: https://open-edx-proposals.readthedocs.io/en/latest/best-practices/oep-0051-bp-conventional-commits.html#type |
Hi @isankadn! Just flagging Ed's comment and Adolfo's requested changes. Also, your CLA should be all set now, so once tests are re-run the check should turn green. |
const SupportUrl = ( | ||
<a className="text-gray-700 mr-3" href={`${getConfig().SUPPORT_URL}`}>{intl.formatMessage(messages.help)}</a> | ||
); |
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.
I don't think we need to specify a separate variable for this. It's fine if we just do it below, via:
{getConfig().SUPPORT_URL && (
<a>...</a>
)}
@isankadn after you address my request, can you please squash your commits into a single one with a conventional commit title? In this case it would be a |
Hi @isankadn! Just checking in on this to see if you've been able to address Adolfo's feedback. Please let us know when this is ready to review. Thank you! |
Hi @isankadn friendly ping on this. Are you planning to pursue this PR? |
Hi @isankadn - just checking in to see if you plan to pursue this pull request - please let us know. Thanks! |
Hi @isankadn - I'm going to close this pull request for now. We can reopen if you'd like to pursue in the future. Thanks! |
@isankadn Even though your pull request wasn’t merged, please take a moment to answer a two question survey so we can improve your experience in the future. |
Description:
On the MFE learning top menu, the "Help" link is currently displayed by default.
With this change, the "Help" menu will only be visible if the "SUPPORT URL" variable is not empty.