mirror of
https://github.com/booklore-app/booklore.git
synced 2026-02-18 23:42:06 +01:00
fix(ui): use view preference override for magic shelves (#2215)
This commit is contained in:
@@ -327,7 +327,7 @@ export class BookBrowserComponent implements OnInit, AfterViewInit {
|
||||
|
||||
this.entityViewPreferences = user.user?.userSettings?.entityViewPreferences;
|
||||
const globalPrefs = this.entityViewPreferences?.global;
|
||||
const currentEntityTypeStr = this.entityType ? this.entityType.toString().toUpperCase() : undefined;
|
||||
const currentEntityTypeStr = this.entityType ? this.entityType.toString().toUpperCase().replaceAll(' ', '_') : undefined;
|
||||
this.coverScalePreferenceService.initScaleValue(this.coverScalePreferenceService.scaleFactor);
|
||||
this.columnPreferenceService.initPreferences(user.user?.userSettings?.tableColumnPreference);
|
||||
this.visibleColumns = this.columnPreferenceService.visibleColumns;
|
||||
|
||||
Reference in New Issue
Block a user