-
Notifications
You must be signed in to change notification settings - Fork 162
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
When accessing the Authn MFE first time, It shows "Authn | null" in the header #1158
Comments
Hi Hina! 👋 Removing the entire Can I suggest instead to only remove the site name when it's null? That way, the title would be "Authn" while loading the page, and then become "Authn | site_name" once A separate question would be to rename the "Authn" title to "Authentication". I think there's consensus to say that "Authn" makes for a terrible site name. |
@hinakhadim The issue has been resolved in Pull Request #1168, and I am closing the PR with the resolution of "Fixed." |
@regisb I have implemented this suggested change.
|
I agree. I'll confirm from product and then @attiyaIshaque lets create a follow up PR to do this too. |
Oh wow. Simple and efficient, I love it! Feel free to open a similar PR to cherry-pick the change in the open-release/quince.master branch. That way we will benefit from this change the next time a minor release tag is created (should be some time around april, I believe). |
Whenever I clicked on 'Sign In' button, it takes me to the Authn MFE. The issue is that it shows 'Authn | null' in the header. The reason is that in
public/index.html
, the header is<title>Authn | <%= process.env.SITE_NAME %></title>
. For first time, theprocess.env.SITE_NAME
is null and after thatmergeConfig
runs which updatesSITE_NAME
. Due to that thing, it showsAuthn | null
which is not a good user experience. I will suggest to remove| <%= process.env.SITE_NAME %>
and its better to just showAuthn
only in title. Here is the screenshot:I am running openedx using
tutor local
The text was updated successfully, but these errors were encountered: