Skip to content

Commit

Permalink
Merge pull request #272 from adaptlearning/issue/271
Browse files Browse the repository at this point in the history
Fix: Correct printCompletionInformation string creation
  • Loading branch information
cahirodoherty-learningpool authored Apr 25, 2023
2 parents ed55cbe + 9e07fbf commit 8aa76a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/adapt-stateful-session.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default class StatefulSession extends Backbone.Controller {
mark :
'0';
return markers;
}, (new Array(max + 1).join('-').split(''))).join('');
}, new Array(max + 1).fill('-')).join('');
logging.info(`course._isComplete: ${courseComplete}, course._isAssessmentPassed: ${assessmentPassed}, ${this._trackingIdType} completion: ${completionString}`);
}

Expand Down

0 comments on commit 8aa76a0

Please sign in to comment.