Reformat code

This commit is contained in:
Toast 2025-02-04 14:17:19 +01:00
parent 4b10d3d056
commit 093180f5b2
17 changed files with 101 additions and 104 deletions

View file

@ -3,5 +3,6 @@
[header]="toast.header || ''" [autohide]="true" [delay]="toast.delay || 5000"
(hidden)="toastService.remove(toast)"
[animation]="true" [class]="toast.htmlClass"
>{{ toast.body }}</ngb-toast>
>{{ toast.body }}
</ngb-toast>
}

View file

@ -1,6 +1,6 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import { ToastContainerComponent } from './toast-container.component';
import {ToastContainerComponent} from './toast-container.component';
describe('ToastContainerComponent', () => {
let component: ToastContainerComponent;
@ -10,7 +10,7 @@ describe('ToastContainerComponent', () => {
await TestBed.configureTestingModule({
imports: [ToastContainerComponent]
})
.compileComponents();
.compileComponents();
fixture = TestBed.createComponent(ToastContainerComponent);
component = fixture.componentInstance;