assignId()

in ChatbotUI/src/app/components/main/chat/chatbar/chatbar.component.ts [195:202]


  assignId(id: any) {
    for (let i = 0; i < this.questionArray.length; i++) {
      if (!this.questionArray[i].id) {
        this.questionArray[i].id = id;
        break;
      }
    };
  }