fix: use LOGO_URL and move to GH actions (#81)

* fix: use LOGO_URL and move to GH actions

* fix: duplicate i18n message id
This commit is contained in:
Adam Stankiewicz
2020-12-01 09:48:38 -05:00
committed by GitHub
parent 78573e30f1
commit 14fe2d9bc6
7 changed files with 74 additions and 28 deletions

View File

@@ -20,7 +20,7 @@ ensureConfig([
'LOGOUT_URL',
'LOGIN_URL',
'SITE_NAME',
'LOGO_TRADEMARK_URL',
'LOGO_URL',
], 'Header component');
subscribe(APP_CONFIG_INITIALIZED, () => {
@@ -77,7 +77,7 @@ function Header({ intl }) {
];
const props = {
logo: config.LOGO_TRADEMARK_URL,
logo: config.LOGO_URL,
logoAltText: config.SITE_NAME,
siteName: config.SITE_NAME,
logoDestination: `${config.LMS_BASE_URL}/dashboard`,