FlexBE / flexbe_app

The classic user interface (editor + runtime control) for the FlexBE behavior engine. See the flexbe_webui for latest
BSD 3-Clause "New" or "Revised" License
48 stars 49 forks source link

rc/rc_pubsub bug in feedback #8

Closed dcconner closed 5 years ago

dcconner commented 6 years ago

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) + '%)');
pschillinger commented 6 years ago

Thank you for spotting this, looks like a typo.

Could you add a PR for this or directly commit it to develop in case you have writing rights?