Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit f48ad3a

Browse files
committed
Fix naming
1 parent 1485613 commit f48ad3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Our.Umbraco.DocTypeGridEditor/Web/UI/App_Plugins/DocTypeGridEditor/Js/doctypegrideditor.controllers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,8 @@ angular.module("umbraco").controller("Our.Umbraco.DocTypeGridEditor.Dialogs.DocT
257257

258258
function submit() {
259259
if ($scope.model.submit) {
260-
$scope.model.node.name = $scope.model.node.key;
261-
$scope.model.node.variants[0].name = "Dtge Temp: " + $scope.model.node.name
260+
$scope.model.node.name = "Dtge Temp: " + $scope.model.node.key;
261+
$scope.model.node.variants[0].name = $scope.model.node.name
262262
$scope.model.node.variants[0].save = true;
263263

264264
// save the content as a blueprint, to trigger validation

0 commit comments

Comments
 (0)