Skip to content

Commit abf1525

Browse files
authored
[No ticket] Remove registration names for tablet (#1205)
* Remove registration names for tablet * Update computed keys
1 parent 1951fb5 commit abf1525

File tree

1 file changed

+2
-2
lines changed
  • lib/registries/addon/components/registries-navbar

1 file changed

+2
-2
lines changed

lib/registries/addon/components/registries-navbar/component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export default class RegistriesNavbar extends AuthBase {
4040
return this.provider ? this.provider.id : defaultProviderId;
4141
}
4242

43-
@computed('media.isMobile', 'provider.brand')
43+
@computed('media.{isMobile,isTablet}', 'provider.brand')
4444
get shouldShowProviderName() {
45-
return !this.media.isMobile && this.provider && this.provider.brand;
45+
return !this.media.isMobile && !this.media.isTablet && this.provider && this.provider.brand;
4646
}
4747

4848
@computed('provider.{allowSubmissions,id}')

0 commit comments

Comments
 (0)