Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Add check in case actionId is null
Browse files Browse the repository at this point in the history
  • Loading branch information
mamikals committed Jan 24, 2024
1 parent d277ec1 commit f82881e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/komponenter/footer/chatbot/ChatbotWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const ChatbotWrapper = () => {
});
boost.chatPanel.addEventListener('setFilterValue', function (ev: any) {
boost.chatPanel.setFilterValues(ev.detail.filterValue);
boost.chatPanel.triggerAction(ev.detail.nextId);
if (ev.detail.nextId) boost.chatPanel.triggerAction(ev.detail.nextId);
});

if (bufferLoad) {
Expand Down

0 comments on commit f82881e

Please sign in to comment.