From 2f9bf47af57a98b32354c8bb5abe8edc7b05129e Mon Sep 17 00:00:00 2001 From: Artem Kurchenko Date: Wed, 9 Sep 2026 12:08:52 +0400 Subject: [PATCH] fix a typo in import path --- .../Demos/HtmlEditor/AITextEditing/Angular/app/app.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.service.ts b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.service.ts index f04866495dcc..7c99ac1335d9 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.service.ts +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { type DxHtmlEditorTypes } from 'devextreme-angular/ui/html_editor'; +import { type DxHtmlEditorTypes } from 'devextreme-angular/ui/html-editor'; const extractKeywordsPrompt: DxHtmlEditorTypes.AICustomCommand['prompt'] = () => 'Extract a list of keywords from the text and return it as a comma-separated string';