I am assuming that you're referring to the Dashboard - Course Progress widget.
Unfortunately, there are no controls available for this. This is the first such request, so here are the options :
We can add this in our Widget in the theme updates.
I can give you a small code snippet which would enable this.
#1 : Let me know.
#2 : Add this snippet :
add_filter('wplms_dashboard_course_progerss',function($args){
$args['orderby'] = 'name';
return $args;
});
I checked your website, the code seems to be working, refer: http://screencast-o-matic.com/watch/cbeYXU6C2V
As you can see in the video first the numeric value, i.e 8 and then all the names starting with A is there and so on.
Please try clearing the cache.