File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ SITE_NAME=Open edX
25
25
SUPPORT_CENTER_TEXT = ' '
26
26
SUPPORT_CENTER_URL = null
27
27
USER_INFO_COOKIE_NAME = edx-user-info
28
- LOGO_ALT_TEXT = " Open edX Logo"
28
+ FOOTER_LOGO_ALT_TEXT = " Open edX Logo"
29
29
LOGO_URL = https://edx-cdn.org/v3/default/logo.svg
30
30
LOGO_TRADEMARK_URL = https://edx-cdn.org/v3/default/logo-trademark.svg
31
31
LOGO_WHITE_URL = https://edx-cdn.org/v3/default/logo-white.svg
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ custom legal links in the footer. Optional environment variables can also be set
52
52
* ``ACCESSIBILITY_URL `` - Accessibility page URL.
53
53
* ``CONTACT_URL `` - Contact Us page URL.
54
54
* ``HONOR_CODE_URL `` - Honor Code page URL.
55
- * ``LOGO_ALT_TEXT `` - Alt text for the logo.
55
+ * ``FOOTER_LOGO_ALT_TEXT `` - Alt text for the footer logo.
56
56
* ``SHOW_LOGO `` - Optionally display the logo.
57
57
* ``SUPPORT_CENTER_TEXT `` - Text for the Support Center link i.e. `Help Center `.
58
58
* ``SUPPORT_CENTER_URL `` - Support center URL.
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ subscribe(APP_CONFIG_INITIALIZED, () => {
21
21
ACCESSIBILITY_URL : process . env . ACCESSIBILITY_URL ,
22
22
CONTACT_URL : process . env . CONTACT_URL ,
23
23
HONOR_CODE_URL : process . env . HONOR_CODE_URL ,
24
- LOGO_ALT_TEXT : process . env . LOGO_ALT_TEXT ,
24
+ FOOTER_LOGO_ALT_TEXT : process . env . FOOTER_LOGO_ALT_TEXT ,
25
25
PRIVACY_POLICY_URL : process . env . PRIVACY_POLICY_URL ,
26
26
SHOW_LOGO : process . env . SHOW_LOGO ,
27
27
SUPPORT_CENTER_TEXT : process . env . SUPPORT_CENTER_TEXT ,
@@ -80,7 +80,7 @@ class SiteFooter extends React.Component {
80
80
< img
81
81
style = { { maxHeight : 45 } }
82
82
src = { logo || config . LOGO_TRADEMARK_URL }
83
- alt = { getConfig ( ) . LOGO_ALT_TEXT || intl . formatMessage ( messages [ 'footer.logo.altText' ] ) }
83
+ alt = { getConfig ( ) . FOOTER_LOGO_ALT_TEXT || intl . formatMessage ( messages [ 'footer.logo.altText' ] ) }
84
84
/>
85
85
</ a >
86
86
) }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ process.env.CONTACT_URL = 'http://localhost:18000/contact';
27
27
process . env . SUPPORT_CENTER_URL = 'http://localhost:18000/contact' ;
28
28
process . env . SUPPORT_CENTER_TEXT = 'SUPPORT CENTER' ;
29
29
process . env . TRADEMARK_TEXT = 'Trade Mark text' ;
30
- process . env . LOGO_ALT_TEXT = 'alt text' ;
30
+ process . env . FOOTER_LOGO_ALT_TEXT = 'alt text' ;
31
31
process . env . SHOW_LOGO = true ;
32
32
process . env . SUPPORT_EMAIL = '[email protected] ' ;
33
33
process . env . ACCESSIBILITY_URL = 'https://www.edx.org/accessibility' ;
You can’t perform that action at this time.
0 commit comments