Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0e4f883

Browse files
authoredJan 21, 2025··
Fix create child issue in list view with infinite editor (#13355). (#17637)
1 parent 4ef5064 commit 0e4f883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ function listViewController($scope, $interpolate, $routeParams, $injector, $time
781781
$scope.options.allowBulkDelete;
782782

783783
if ($scope.isTrashed === false) {
784-
getContentTypesCallback(id).then(function (listViewAllowedTypes) {
784+
getContentTypesCallback($scope.contentId).then(function (listViewAllowedTypes) {
785785
$scope.listViewAllowedTypes = listViewAllowedTypes;
786786

787787
var blueprints = false;

0 commit comments

Comments
 (0)
Please sign in to comment.