Skip to content

Commit

Permalink
Merge pull request #16150 from qburst/fix--16148
Browse files Browse the repository at this point in the history
fix: tabview demo code for TabViewDynamic
  • Loading branch information
cetincakiroglu authored Aug 1, 2024
2 parents 9a1fe84 + bb09cf3 commit 6ca5050
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/showcase/doc/tabview/dynamicdoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ import { TabViewModule } from 'primeng/tabview';
import { CommonModule } from '@angular/common';
@Component({
selector: 'tab-view-basic-demo',
templateUrl: './tab-view-basic-demo.html',
selector: 'tab-view-dynamic-demo',
templateUrl: './tab-view-dynamic-demo.html',
standalone: true,
imports: [TabViewModule, CommonModule]
})
export class TabViewBasicDemo imlements onInit {
export class TabViewDynamicDemo implements OnInit {
tabs: { title: string, content: string }[] = [];
ngOnInit() {
Expand Down

0 comments on commit 6ca5050

Please sign in to comment.