-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
add: commits from another branch that was done #197
Conversation
Bumps [node-nlp](https://github.com/axa-group/nlp.js) from 3.4.0 to 3.6.0. - [Release notes](https://github.com/axa-group/nlp.js/releases) - [Commits](https://github.com/axa-group/nlp.js/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.513.0 to 2.517.0. - [Release notes](https://github.com/aws/aws-sdk-js/releases) - [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md) - [Commits](aws/aws-sdk-js@v2.513.0...v2.517.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 22.15.0 to 22.15.2. - [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases) - [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/master/CHANGELOG.md) - [Commits](jest-community/eslint-plugin-jest@v22.15.0...v22.15.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.0.17 to 24.0.18. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.7.1 to 12.7.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [core-js](https://github.com/zloirock/core-js) from 3.2.0 to 3.2.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](zloirock/core-js@v3.2.0...v3.2.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Bumps [react-hot-loader](https://github.com/gaearon/react-hot-loader) from 4.12.10 to 4.12.11. - [Release notes](https://github.com/gaearon/react-hot-loader/releases) - [Changelog](https://github.com/gaearon/react-hot-loader/blob/master/CHANGELOG.md) - [Commits](gaearon/react-hot-loader@v4.12.10...v4.12.11) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* fix(contentful): replies format was different than expected by botonic react * chore(contentful): improvements in eslint config
@@ -37,6 +37,7 @@ export const Button = props => { | |||
else if (props.path) sendPayload(`__PATH_PAYLOAD__${props.path}`) | |||
else if (props.payload) sendPayload(props.payload) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ericmarcos if we allowed having both payload and url, would we be able to open an url and send a track when user presses a button?
const closeMenu = () => { | ||
setMenuIsOpened(false) | ||
} | ||
|
||
const sendInput = async input => { | ||
let isRegex = false | ||
let inputMessage = null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this method is too long. Maybe we can split it using a private method for text inputs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated with the last PR
let handoff = action.startsWith('create_case') | ||
if (handoff && isDev()) addMessageComponent(<Handoff />) | ||
updateHandoff(handoff) | ||
if (!isRegex) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like isRegex is not defined here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can merge it
…to persistentMenuBotonic
I've created this branch becouse I had a problem with the "persistenMenu" branch. It's a copy of that. In this PR I've customized the persistent menu in case that it exists.