You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
caseactionTypes.EVAL_URL: {constpageCallbacks=store.getState().behavior.get('pageChangeCallbacks');constpageCallbacksJs=pageCallbacks ? pageCallbacks.toJS() : {};constnewUrl=action.url;if(!pageCallbacksJs.pageChanges)break;if(store.getState().behavior.get('oldUrl')!==newUrl){const{ pageChanges, errorIntent }=pageCallbacksJs;constmatched=pageChanges.some((callback)=>{if(callback.regex){if(newUrl.match(callback.url)){emitMessage(callback.callbackIntent);returntrue;}}else{letcleanCurrentUrl=cleanURL(newUrl);letcleanCallBackUrl=cleanURL(callback.url);if(!cleanCallBackUrl.match(/\?.+$/)){// the callback does not have a querystringcleanCurrentUrl=trimQueryString(cleanCurrentUrl);cleanCallBackUrl=trimQueryString(cleanCallBackUrl);}if(cleanCurrentUrl===cleanCallBackUrl){emitMessage(callback.callbackIntent);returntrue;}returnfalse;}});if(!matched)emitMessage(errorIntent);}break;}
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
hi I have two questions below
Below is source code
Path:
packages\chatbot-rasa-webchat\src\components\Widget\index.js
Path:
packages\chatbot-rasa-webchat\src\store\store.js
The text was updated successfully, but these errors were encountered: