Skip to content

Commit

Permalink
chore: fix editable module demo
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Mar 5, 2024
1 parent 84c9b44 commit bc6b51a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';

import { AngularNodeViewComponent } from 'ngx-tiptap';
import { AngularNodeViewComponent, NgxTiptapModule } from 'ngx-tiptap';

@Component({
selector: 'app-nodeview-editable',
standalone: true,
imports: [CommonModule],
imports: [CommonModule, NgxTiptapModule],
templateUrl: './editable.component.html',
styleUrls: ['./editable.component.css'],
})
Expand Down

0 comments on commit bc6b51a

Please sign in to comment.