We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello , every time i'm try to run this ButtonTemplate
public function AskForMoreInfo() { $list = ButtonTemplate::create(__('bot.chose_one')) ->addButton( ElementButton::create(__('bot.anther_search')) ->type('postback') ->payload('search') ) ->addButton( ElementButton::create(__('bot.next_aya')) ->type('postback') ->payload('next_aya') ); $this->ask($list, function (Answer $answer) { $this->say($answer->getText()); }); }
i'm facing this Cannot read property 'map' of undefined (chat.js:1)
The text was updated successfully, but these errors were encountered:
i found out if i have two ButtonTemplate at the same conversation only first one will work
Sorry, something went wrong.
Have you had solution for that problem?
In my case, the problem occurred when I was trying to list buttons after clicking other conversation buttons. The problem was this line: https://github.com/botman/web-widget/blob/master/src/chat/messages/action.tsx#L30. As you can see, a new object is created and buttons are not passed to the messageHandler function.
No branches or pull requests
hello ,
every time i'm try to run this ButtonTemplate
i'm facing this Cannot read property 'map' of undefined (chat.js:1)
The text was updated successfully, but these errors were encountered: