Don't reuse previously used content templates

(cherry picked from commit 3087eff147)
This commit is contained in:
Kenn Jacobsen
2019-08-14 21:25:02 +02:00
committed by Sebastiaan Janssen
parent a0af474c75
commit 455395154a

View File

@@ -51,7 +51,10 @@ function contentCreateController($scope,
.search("create", "true")
/* when we create a new node we want to make sure it uses the same
language as what is selected in the tree */
.search("cculture", mainCulture);
.search("cculture", mainCulture)
/* when we create a new node we must make sure that any previously
used blueprint is reset */
.search("blueprintId", null);
close();
}