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
Gives error logging synthesis feedback. Fix just add + before feedback calc:
@@ -234,7 +234,7 @@ RC.PubSub = new (function() { } var synthesis_action_feedback_callback = function(feedback, root, feedback_cb) { - console.log('Synthesis status: ' + feedback.status + ' (' (feedback.progress * 100) + '%)'); + console.log('Synthesis status: ' + feedback.status + ' (' + (feedback.progress * 100) + '%)');
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Fix #8: Correct typo in synthesis feedback
b3dfb67
Merge pull request FlexBE#8 from benmaidel/mojin-devel
d248008
Merge master into mojin-devel
No branches or pull requests
Gives error logging synthesis feedback. Fix just add + before feedback calc:
The text was updated successfully, but these errors were encountered: