assignQToChatQuery()

in ChatbotUI/src/app/components/main/main.component.ts [117:126]


  assignQToChatQuery(question: string) {
    this.chatQuery = question;
    let userMessage: Message = {
      body: this.chatQuery,
      type: 'user',
      shareable: false,
    }
    this.chatQuery && this.broadcastService.nextChatQuery(userMessage);
    this.router.navigateByUrl('/' + this.selectedType);
  }