From bc6b51a927b7c939a6148fd14d9acbe6e66d1361 Mon Sep 17 00:00:00 2001 From: Sibiraj <20282546+sibiraj-s@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:27:27 +0530 Subject: [PATCH] chore: fix editable module demo --- .../nodeviews/editable/editable.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/demo/src/app/nodeview-renderer/nodeviews/editable/editable.component.ts b/projects/demo/src/app/nodeview-renderer/nodeviews/editable/editable.component.ts index 2cbabbf..431caf3 100644 --- a/projects/demo/src/app/nodeview-renderer/nodeviews/editable/editable.component.ts +++ b/projects/demo/src/app/nodeview-renderer/nodeviews/editable/editable.component.ts @@ -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'], })