Fixed a bug where companion bar would be pushing content to the right even when not visible. Updated nav service localstorage key. (#1159)

This commit is contained in:
Joseph Milazzo 2022-03-16 20:26:51 -05:00 committed by GitHub
parent b1c4b2863c
commit 3a9d6b1a08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 deletions

View file

@ -5,7 +5,7 @@ import { ReplaySubject, take } from 'rxjs';
providedIn: 'root'
})
export class NavService {
public localStorageSideNavKey = 'kavita--sidenav--collapsed';
public localStorageSideNavKey = 'kavita--sidenav--expanded';
private navbarVisibleSource = new ReplaySubject<boolean>(1);
/**