Skip to content

Commit 596ea4b

Browse files
committed
Category settings: Fix test for parent category mistaking all top level categories for parents
Only categories with children should be treated as parents, not all top level categories
1 parent 2a716d1 commit 596ea4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/settings/categories/edit.controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function (
102102
$scope.category.parent_id_original = $scope.category.parent.id;
103103
delete $scope.category.parent;
104104
}
105-
if (!$scope.category.parent_id) {
105+
if ($scope.category.children && $scope.category.children.length) {
106106
$scope.isParent = true;
107107
}
108108
});

0 commit comments

Comments
 (0)