UX: do not show footer nav if not actions (#28059)

This commit is contained in:
Joffrey JAFFEUX 2024-07-24 11:16:05 +02:00 committed by GitHub
parent b64d01bc10
commit c393c56e5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -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)
);
}