1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Fix client--undefined class being applied to the default app

This commit is contained in:
Brett Sun 2016-06-06 16:05:18 +02:00
parent c807f62297
commit d5a722259b

View File

@ -69,7 +69,7 @@ const AppGateway = {
});
// Adds a client specific class to the body for whitelabel styling
window.document.body.classList.add(`client--${settings.subdomain}`);
window.document.body.classList.add(`client--${settings.subdomain || 'ascribe'}`);
AppResolver
.resolve(settings)