diff --git a/app/static/father_child.js b/app/static/father_child.js
index 907a174a5dc972b525daaaf2e09a65b757754b67..9658a87020914a12552b387ffa60670506cdca2b 100644
--- a/app/static/father_child.js
+++ b/app/static/father_child.js
@@ -22,6 +22,8 @@ function get_all_fathers_of_child(tab_labels, child_id) {
      */
     var fathers = [];
     var posi_child = is_in_tab(child_id, tab_labels, 0, 2);
+    if (posi_child <= 0)
+        return (fathers);
     for (var i = 0; tab_labels[i]; i++) {
         if (tab_labels[posi_child][2] == tab_labels[i][0]) {
             fathers.push(tab_labels[i][0]);
diff --git a/app/templates/add_new_tuto.html b/app/templates/add_new_tuto.html
index c43b3dec1ddabd8c8f552aaaabbc3f0f21190f7c..261a6fface145b41cf65620b883351e245c35daa 100644
--- a/app/templates/add_new_tuto.html
+++ b/app/templates/add_new_tuto.html
@@ -174,7 +174,7 @@
 			data: {
 				all_labels: JSON.parse(request_ajax("labels")),
 				table: order_intent_labels_tab(),
-				is_active: create_empty_tab(20),
+				is_active: create_empty_tab(35),
 				labels_add: []
 			},
 			methods: {
diff --git a/app/templates/browse.html b/app/templates/browse.html
index e02b2b4f7031eac4798506a87da9eb0d19abc045..064e1556ad7942d429134a3436fad6c8496382bc 100644
--- a/app/templates/browse.html
+++ b/app/templates/browse.html
@@ -331,7 +331,7 @@
 					if (type == 4) {
 						console.log("AFTER to unselect");
 						maj_tutos_after_unselect();
-					} else if (type == 1 || hierarchy.old_labels_tab.length == 1) {
+					} else if (type == 1) {// || hierarchy.old_labels_tab.length == 1) {
 						console.log("SEARCH FROM DB");
 						maj_tutos_from_db();
 					} else if (type == 3) {