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
If I make a TextBox in PsychoPy whose contents is a number, when I run online it throws this error:
TypeError: Cannot convert a Symbol value to a string
Inspecting in the console, the error is here:
set text(text) { this._dom_input.value = text; if (this._substituted) { this._updateSurrogate(); } }
Should this be this._dom_input.value = String(text); instead?
this._dom_input.value = String(text);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I make a TextBox in PsychoPy whose contents is a number, when I run online it throws this error:
Inspecting in the console, the error is here:
Should this be
this._dom_input.value = String(text);
instead?The text was updated successfully, but these errors were encountered: