Skip to content
This repository has been archived by the owner on Dec 13, 2021. It is now read-only.

Commit

Permalink
Merge pull request #51 from umco/develop
Browse files Browse the repository at this point in the history
Preparing v2.0.1 release
  • Loading branch information
leekelleher authored Aug 1, 2018
2 parents ecf105e + b832b18 commit 941e1e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image: Visual Studio 2017

# version format
version: 2.0.0.{build}
version: 2.0.1.{build}

# UMBRACO_PACKAGE_PRERELEASE_SUFFIX if a rtm release build this should be blank, otherwise if empty will default to alpha
# example UMBRACO_PACKAGE_PRERELEASE_SUFFIX=beta
Expand Down
2 changes: 1 addition & 1 deletion build/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<language></language>
<tags></tags>
<dependencies>
<dependency id="Our.Umbraco.InnerContent" version="1.1" />
<dependency id="Our.Umbraco.InnerContent" version="[2,3)" />
</dependencies>
</metadata>
<files />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ angular.module("umbraco").controller("Our.Umbraco.StackedContent.Controllers.Sta
}
});

} else if ($scope.model.config.singleItemMode === "1") {
} else if (editorState.current.hasOwnProperty("contentTypeAlias") && $scope.model.config.singleItemMode === "1") {

// Initialise single item mode model
innerContentService.createDefaultDbModel($scope.model.config.contentTypes[0]).then(function (v) {
Expand Down

0 comments on commit 941e1e1

Please sign in to comment.