navigate()

in ChatbotUI/src/app/components/main/main.component.ts [99:107]


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