There was an error while loading. Please reload this page.
1 parent 1951fb5 commit abf1525Copy full SHA for abf1525
lib/registries/addon/components/registries-navbar/component.ts
@@ -40,9 +40,9 @@ export default class RegistriesNavbar extends AuthBase {
40
return this.provider ? this.provider.id : defaultProviderId;
41
}
42
43
- @computed('media.isMobile', 'provider.brand')
+ @computed('media.{isMobile,isTablet}', 'provider.brand')
44
get shouldShowProviderName() {
45
- return !this.media.isMobile && this.provider && this.provider.brand;
+ return !this.media.isMobile && !this.media.isTablet && this.provider && this.provider.brand;
46
47
48
@computed('provider.{allowSubmissions,id}')
0 commit comments