UX: do not show footer nav if not actions (#28059)
This commit is contained in:
parent
b64d01bc10
commit
c393c56e5a
|
@ -66,7 +66,9 @@ export default class FooterNav extends Component {
|
|||
return (
|
||||
[UNSCROLLED, SCROLLED_UP].includes(
|
||||
this.scrollDirection.lastScrollDirection
|
||||
) && !this.composer.isOpen
|
||||
) &&
|
||||
!this.composer.isOpen &&
|
||||
(this.capabilities.isAppWebview || this.canGoBack || this.canGoForward)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue