Skip to content

Commit

Permalink
fix: follow up questions
Browse files Browse the repository at this point in the history
  • Loading branch information
Shibani Basava authored and shibbas committed Feb 23, 2024
1 parent eae0fee commit 02c9112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/chat-component/src/components/chat-component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ export class ChatComponent extends LitElement {
.svgIcon="${iconLogo}"
@on-action-button-click="${this.handleChatEntryActionButtonClick}"
@on-citation-click="${this.handleCitationClick}"
@on-followup-click="${this.handleQuestionInputClick}"
@on-followup-click="${this.handleInput}"
>
</chat-thread-component>`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class ChatThreadComponent extends LitElement {
event.preventDefault();
const followUpClickEvent = new CustomEvent('on-followup-click', {
detail: {
question,
value: question,
chatThreadEntry: entry,
},
bubbles: true,
Expand Down

0 comments on commit 02c9112

Please sign in to comment.