Skip to content

Commit

Permalink
Fix for Update Interface Unit Completion (#578)
Browse files Browse the repository at this point in the history
* Update unit completed check after publishing its status
  • Loading branch information
muhammadali286 authored Sep 4, 2024
1 parent 89572c6 commit e34e7f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/lib/xmodule/xmodule/js/src/sequence/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
this.Sequence = (function() {
function Sequence(element) {
var self = this;

this.removeBookmarkIconFromActiveNavItem = function(event) {
return Sequence.prototype.removeBookmarkIconFromActiveNavItem.apply(self, [event]);
};
Expand Down Expand Up @@ -428,7 +427,8 @@
usage_key: usageKey
}, function(data) {
if (data.complete === true) {
completionIndicators.removeClass('is-hidden');
completionIndicators.removeClass('is-hidden fa-regular')
completionIndicators.addClass('fa')
}
});
}
Expand Down

0 comments on commit e34e7f7

Please sign in to comment.