diff --git a/js/app.js b/js/app.js index bd9e79be..30a57d2b 100644 --- a/js/app.js +++ b/js/app.js @@ -71,6 +71,9 @@ class AppGateway { type = settings.type; subdomain = settings.subdomain; } + + window.document.body.classList.add('client--' + subdomain); + EventActions.applicationWillBoot(settings); window.appRouter = Router.run(getRoutes(type, subdomain), Router.HistoryLocation, (App) => { React.render( diff --git a/js/components/whitelabel/wallet/components/ikonotv/ikonotv_piece_list.js b/js/components/whitelabel/wallet/components/ikonotv/ikonotv_piece_list.js index 33478fbf..053d21b3 100644 --- a/js/components/whitelabel/wallet/components/ikonotv/ikonotv_piece_list.js +++ b/js/components/whitelabel/wallet/components/ikonotv/ikonotv_piece_list.js @@ -37,11 +37,17 @@ let IkonotvPieceList = React.createClass({ accordionListItemType={IkonotvAccordionListItem} filterParams={[{ label: getLangText('Show works I have'), - items: [{ - key: 'acl_loaned', - label: getLangText('loaned to IkonoTV') - }] - }]}/> + items: [ + { + key: 'submitted', + label: getLangText('submitted') + }, + { + key: 'accepted', + label: getLangText('loaned') + } + ] + }]}/> ); } diff --git a/js/components/whitelabel/wallet/wallet_app.js b/js/components/whitelabel/wallet/wallet_app.js index efddadc0..2a235cef 100644 --- a/js/components/whitelabel/wallet/wallet_app.js +++ b/js/components/whitelabel/wallet/wallet_app.js @@ -32,7 +32,7 @@ let WalletApp = React.createClass({ } return ( -