Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 authored and xelaint committed Dec 15, 2023
1 parent 1587fd1 commit ff686e8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions libs/design/toast/src/service/toast.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ import {
DaffFocusStackService,
} from '@daffodil/design';

import { daffToastChangesFocus } from './changes-focus';
import { createPositionStrategy } from './position-strategy';
import { DaffToastPositionService } from './position.service';
import {
DaffToast,
DaffToastData,
Expand All @@ -39,15 +42,12 @@ import {
DAFF_TOAST_OPTIONS,
DaffToastOptions,
} from '../options/daff-toast-options';
import { DaffToastModule } from '../toast.module';
import {
daffDefaultToastConfiguration,
DaffToastConfiguration,
} from '../toast/toast-config';
import { DaffToastTemplateComponent } from '../toast/toast-template.component';
import { daffToastChangesFocus } from './changes-focus';
import { createPositionStrategy } from './position-strategy';
import { DaffToastPositionService } from './position.service';
import { DaffToastModule } from '../toast.module';

@Injectable({ providedIn: DaffToastModule })
export class DaffToastService implements OnDestroy {
Expand Down
4 changes: 2 additions & 2 deletions libs/design/toast/src/toast.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import {
} from '@daffodil/design';

import { DaffToastPositionService } from './service/position.service';
import { DaffToastTemplateComponent } from './toast/toast-template.component';
import { DaffToastComponent } from './toast/toast.component';
import { DaffToastActionsDirective } from './toast-actions/toast-actions.directive';
import { DaffToastMessageDirective } from './toast-message/toast-message.directive';
import { DaffToastTitleDirective } from './toast-title/toast-title.directive';
import { DaffToastTemplateComponent } from './toast/toast-template.component';
import { DaffToastComponent } from './toast/toast.component';


@NgModule({
Expand Down
4 changes: 2 additions & 2 deletions libs/design/toast/src/toast/toast.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export class DaffToastComponent
@HostBinding('attr.role') ariaLive = 'status';

@ContentChild(DaffToastActionsDirective)
_actions: DaffToastActionsDirective;
_actions: DaffToastActionsDirective;

@ContentChild(DaffPrefixDirective)
_prefix: DaffPrefixDirective;
_prefix: DaffPrefixDirective;

@Input() toast: DaffToast;

Expand Down

0 comments on commit ff686e8

Please sign in to comment.