From 3da3b232c3f3c013c6e3b7656ff34200cdbc1bd3 Mon Sep 17 00:00:00 2001
From: farbod <zamanifarbod2@gmail.com>
Date: Fri, 17 Dec 2021 17:26:39 +0100
Subject: [PATCH] block sorting improvement, fixes #466

---
 .../components/courseware/CoursewareManagerContainer.vue   | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/resources/vue/components/courseware/CoursewareManagerContainer.vue b/resources/vue/components/courseware/CoursewareManagerContainer.vue
index 26ae1c5bda5..ddb2bbb5f18 100755
--- a/resources/vue/components/courseware/CoursewareManagerContainer.vue
+++ b/resources/vue/components/courseware/CoursewareManagerContainer.vue
@@ -141,6 +141,13 @@ export default {
                     }
                 });
 
+                // If there are more that one section and only one block,
+                // we make sotring of that block possible, by just assuming that there are 2 blocks.
+                // By doing this, we only provide the sorting feature when there are more than one section (section).
+                if (this.sectionsWithBlocksCurrentState.length > 1 && blocks == 1) {
+                    blocks++;
+                }
+
                 return blocks;
             }
          }
-- 
GitLab