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 2ef3a15 commit 07baa02Copy full SHA for 07baa02
1 file changed
numbas_lti/static/resource_remark.js
@@ -430,7 +430,7 @@ const app = createApp({
430
431
const search = this.name_search.trim().toLowerCase();
432
if(search != '') {
433
- list = list.filter(attempt => `${attempt.user.full_name} ${attempt.user.identifier}`.includes(search));
+ list = list.filter(attempt => `${attempt.user.full_name} ${attempt.user.identifier}`.toLowerCase().includes(search));
434
}
435
return list;
436
},
0 commit comments