Skip to content

Commit

Permalink
Fix: Correct printCompletionInformation string creation
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfoster authored Mar 29, 2023
1 parent c1b09c1 commit 9e07fbf
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 @@ -186,7 +186,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 9e07fbf

Please sign in to comment.