Skip to content

Commit

Permalink
fix: necessary directives not imported
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Jan 3, 2025
1 parent aaca8d9 commit 95bc21a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ import { Store } from '@ngrx/store';
import { MatDialog } from '@angular/material/dialog';
import { CalendarContextInfoTarget } from '../../issue/providers/calendar/calendar.model';
import { selectEnabledIssueProviders } from '../../issue/store/issue-provider.selectors';
import { MatButton } from '@angular/material/button';

@Component({
selector: 'issue-provider-setup-overview',
imports: [MatIcon, TranslateModule],
imports: [MatIcon, TranslateModule, MatButton],
templateUrl: './issue-provider-setup-overview.component.html',
styleUrl: './issue-provider-setup-overview.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
MatDialogActions,
MatDialogContent,
MatDialogRef,
MatDialogTitle,
} from '@angular/material/dialog';
import { Store } from '@ngrx/store';
import { T } from '../../../t.const';
Expand Down Expand Up @@ -60,6 +61,7 @@ import { MatIcon } from '@angular/material/icon';
MatDialogActions,
MatButton,
MatIcon,
MatDialogTitle,
],
templateUrl: './dialog-edit-issue-provider.component.html',
styleUrl: './dialog-edit-issue-provider.component.scss',
Expand Down

0 comments on commit 95bc21a

Please sign in to comment.