We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5f209 commit 4d94490Copy full SHA for 4d94490
common/lib/xmodule/xmodule/js/src/sequence/display.js
@@ -302,6 +302,10 @@
302
newPosition = $(event.currentTarget).data('element');
303
}
304
305
+ // attempting to fix error where a student has activity from multiple duplicate courses (same xblockid)
306
+ if (newPosition < 1) { newPosition = 1; }
307
+ if (newPosition > this.num_contents) { newPosition = this.num_contents; }
308
+
309
if ((newPosition >= 1) && (newPosition <= this.num_contents)) {
310
isBottomNav = $(event.target).closest('nav[class="sequence-bottom"]').length > 0;
311
0 commit comments