mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-07 09:35:28 -05:00
* SeriesGroup tag can now have comma separated value to allow a series to be a part of multiple collections. * Added a missing unit test * Refactored how collection tags are created to work in the scan loop reliably. * Added a unit test for RemoveTagsWithoutSeries * Fixed a bug in reading list title generation to avoid Volume 0 if the underlying file had a title set. Fixed a misconfigured unit test. * On User stats page, don't show the user selector on reading history, despite if youre an admin. Cleaned up how we show days with 0 reading events to be more clear. * Refactored the name of a component to reflect what it does * Removed plugin not using * Fix an issue where coalescing a key in epub might have multiple html files ending with the key. In this case, let's take the first. * Added PikaPods to the Readme * Tried to fix layout shift for charts, but need Robbie's help * Chart styling # Added: - Added: Added styling to force charts into their respective containers. # Removed: - Removed: Removed code blocking charts from being visible on mobile. * Merge conflict --------- Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
19 lines
1.0 KiB
HTML
19 lines
1.0 KiB
HTML
<div class="container-fluid" *ngIf="userId">
|
|
|
|
<div class="row g-0 d-flex justify-content-around">
|
|
<ng-container *ngIf="userStats$ | async as userStats">
|
|
<app-user-stats-info-cards [totalPagesRead]="userStats.totalPagesRead" [totalWordsRead]="userStats.totalWordsRead" [timeSpentReading]="userStats.timeSpentReading"
|
|
[chaptersRead]="userStats.chaptersRead" [lastActive]="userStats.lastActive" [avgHoursPerWeekSpentReading]="userStats.avgHoursPerWeekSpentReading"></app-user-stats-info-cards>
|
|
</ng-container>
|
|
</div>
|
|
|
|
<div class="row g-0 pt-4 pb-2 " style="height: 242px">
|
|
<div class="col-md-12 col-sm-12 mt-4 pt-2">
|
|
<app-reading-activity [userId]="userId" [isAdmin]="(isAdmin$ | async) || false" [individualUserMode]="true"></app-reading-activity>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row g-0 pt-4 pb-2 " style="height: 242px">
|
|
<app-stat-list [data$]="precentageRead$" label="% Read" title="Library Read Progress"></app-stat-list>
|
|
</div>
|
|
</div> |