Status Update
Comments
va...@google.com <va...@google.com>
ds...@google.com <ds...@google.com> #2
rn...@viajemos.com <rn...@viajemos.com> #3
Project id: restaurant-phone-reservat-b9tt
Location: us-east1
Please have a look, this is a blocker for us.
Thank you!
ds...@google.com <ds...@google.com> #4
Do we have an estimated time when these bugs will be solved, please?
rn...@viajemos.com <rn...@viajemos.com> #5
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
da...@five9.com <da...@five9.com> #6
m=dialogflow_core:5719 Uncaught ReferenceError: rangy is not defined
at HU.default.onSelect (m=dialogflow_core:5719:22)
at HU.default.mouseUpSelection (m=dialogflow_core:5717:193)
at HTMLDivElement.dispatch (m=dialogflow_core:709:509)
at Ab.handle (m=dialogflow_core:705:406)
onSelect @ m=dialogflow_core:5719
mouseUpSelection @ m=dialogflow_core:5717
dispatch @ m=dialogflow_core:709
Ab.handle @ m=dialogflow_core:705
[Deleted User] <[Deleted User]> #7
I am writing to report a widespread issue that is currently affecting all DialogFlow ES users in our company. We have encountered a problem where users are unable to manually set parameters in DialogFlow ES training phrases.
Upon investigating, I discovered that selecting text within the training phrases triggers an uncaught exception, which is reported in the Chrome DevTools console as follows:
Uncaught ReferenceError: rangy is not defined
at HU.default.onSelect (m=dialogflow_core:5719:22)
at HU.default.mouseUpSelection (m=dialogflow_core:5717:193)
at HTMLDivElement.dispatch (m=dialogflow_core:709:509)
at Ab.handle (m=dialogflow_core:705:406)
onSelect @ m=dialogflow_core:5719
mouseUpSelection @ m=dialogflow_core:5717
dispatch @ m=dialogflow_core:709
Ab.handle @ m=dialogflow_core:705
This issue is significantly hindering our ability to effectively use DialogFlow ES, as it impacts some of the basic functionalities. I urge you to review this issue priority and severity.
Thank you for your attention to this matter.
[Deleted User] <[Deleted User]> #8
As the exception states the error is related to a missing library (rangy). A quick/dirty fix to this issue while the Google Team works in a patch is to manually inject the missing library.
This can be done by copying the following code in the DevTools console while the DialogFlow ES console is open.
But please be careful when using or sharing this code, as you could potentially inject malicious code in your browser.
function injectScript(url) {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = url;
document.head.appendChild(script);
}
injectScript('https://cdnjs.cloudflare.com/ajax/libs/rangy/1.3.1/rangy-core.min.js');
injectScript('https://cdnjs.cloudflare.com/ajax/libs/rangy/1.3.1/rangy-textrange.min.js');
Description
We are able to remove or change parameters that are already assigned in phrases and when adding a phrase the program is also assigning parameters, but when selecting a text in the training phrase no window to selected the parameter appears.