You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to implement NbChatModule in Angular 17 with Nebular 13, a NullInjectorError is thrown, specifically mentioning a missing provider for _NbStatusService.
Expected behavior:
The NbChatModule should integrate seamlessly with Angular 17, without encountering any dependency injection errors.
Steps to reproduce:
Create a new Angular 17 project.
Install Nebular 13 and import NbChatModule in a component.
Attempt to use NbChatModule in the component and observe the NullInjectorError.
Related code:
import { Component } from '@angular/core';
import { NbChatModule } from '@nebular/theme';
@Component({
selector: 'app-chat-bot',
standalone: true,
imports: [NbChatModule],
templateUrl: './chat-bot.component.html',
styleUrl: './chat-bot.component.scss'
})
export class ChatBotComponent {
}
The text was updated successfully, but these errors were encountered:
Issue type
I'm submitting a ... (check one with "x")
Issue description
Current behavior:
When trying to implement NbChatModule in Angular 17 with Nebular 13, a NullInjectorError is thrown, specifically mentioning a missing provider for _NbStatusService.
Expected behavior:
The NbChatModule should integrate seamlessly with Angular 17, without encountering any dependency injection errors.
Steps to reproduce:
Related code:
The text was updated successfully, but these errors were encountered: