Fix: DiscountLimit was not scaled to 100 in MenuCategory detail. So it is now chaled in the json and scaled back in the frontend for the list as that was not supposed to be scaled. Feature: Modifier is now done Fix: In product save, it was checking menu_category second time again instead of sale_category
14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
import {ModifiersRoutingModule} from './modifiers-routing.module';
|
|
|
|
describe('ModifiersRoutingModule', () => {
|
|
let modifiersRoutingModule: ModifiersRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
modifiersRoutingModule = new ModifiersRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(modifiersRoutingModule).toBeTruthy();
|
|
});
|
|
});
|