Skip to content

Commit

Permalink
fix: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy committed Dec 9, 2024
1 parent a47904d commit 206a9ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const ComponentDisplayed = {
selector: 'ocx-my-component-to-display',
template: `<p>Hello, its my component to display custom buttons</p>`,
})
class ComponentToDisplayCustomButtons implements DialogCustomButtonsDisabled, OnInit {
class ComponentToDisplayCustomButtonsComponent implements DialogCustomButtonsDisabled, OnInit {
customButtonEnabled: EventEmitter<{ id: string; enabled: boolean }> = new EventEmitter()

ngOnInit(): void {
Expand All @@ -200,7 +200,7 @@ export const CustomButtons = {
args: {
title: 'Custom title',
messageOrComponent: {
type: ComponentToDisplayCustomButtons,
type: ComponentToDisplayCustomButtonsComponent,
},
primaryKey: {
key: 'PRIMARY_KEY',
Expand Down

0 comments on commit 206a9ca

Please sign in to comment.