Skip to content

Commit

Permalink
Set nottemplate like before to not create a template for these docume…
Browse files Browse the repository at this point in the history
…nt types
  • Loading branch information
bjarnef committed Oct 5, 2021
1 parent 2db037e commit 0170d2a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ function DocumentTypesCreateController($scope, $location, navigationService, con
};

$scope.createComposition = function (icon) {
createDocType({ iscomposition: true, iselement: true, icon });
createDocType({ notemplate: true, iscomposition: true, iselement: true, icon });
};

$scope.createElement = function (icon) {
createDocType({ iselement: true, icon });
createDocType({ notemplate: true, iselement: true, icon });
};

$scope.close = function() {
Expand Down

0 comments on commit 0170d2a

Please sign in to comment.