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:
@@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
||||
import { ActivatedRouteSnapshot } from '@angular/router';
|
||||
import { Observable } from 'rxjs/internal/Observable';
|
||||
|
||||
import { ProductGroup } from '../core/product-group';
|
||||
@@ -9,7 +9,7 @@ import { ProductGroupService } from './product-group.service';
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class ProductGroupResolver implements Resolve<ProductGroup> {
|
||||
export class ProductGroupResolver {
|
||||
constructor(private ser: ProductGroupService) {}
|
||||
|
||||
resolve(route: ActivatedRouteSnapshot): Observable<ProductGroup> {
|
||||
|
||||
Reference in New Issue
Block a user