Feature: Adding recipe templates to print recipes.
Feautre: Recipe export to xlsx Chore: Python 11 style type annotations Chore: Moved to sqlalchemy 2.0 Chore: Minimum python is 3.11 Fix: Fix nullability of a lot of fields in the database.
This commit is contained in:
@@ -88,14 +88,14 @@ export class EntriesComponent implements OnInit {
|
||||
sortDirection,
|
||||
);
|
||||
});
|
||||
this.sort?.sortChange.subscribe((x) =>
|
||||
this.sort?.sortChange.subscribe(() =>
|
||||
this.router.navigate([], {
|
||||
relativeTo: this.route,
|
||||
queryParams: { a: this.sort?.active ?? 'date', d: this.sort?.direction },
|
||||
queryParamsHandling: 'merge',
|
||||
}),
|
||||
);
|
||||
this.paginator?.page.subscribe((x) =>
|
||||
this.paginator?.page.subscribe(() =>
|
||||
this.router.navigate([], {
|
||||
relativeTo: this.route,
|
||||
queryParams: { ps: this.paginator?.pageSize, pi: this.paginator?.pageIndex },
|
||||
|
||||
Reference in New Issue
Block a user