diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/colorpicker/colorpicker.controller.js b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/colorpicker/colorpicker.controller.js
index abb26ef4a2..9b3be511a4 100644
--- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/colorpicker/colorpicker.controller.js
+++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/colorpicker/colorpicker.controller.js
@@ -139,6 +139,11 @@ function ColorPickerController($scope) {
if (!$scope.model.value)
return;
+ // Backwards compatibility, the color used to be stored as a hex value only
+ if (typeof $scope.model.value === "string") {
+ $scope.model.value = { value: $scope.model.value, label: $scope.model.value };
+ }
+
// Complex color (value and label)?
if (!$scope.model.value.hasOwnProperty("value"))
return;
diff --git a/src/Umbraco.Web.UI/.eslintignore b/src/Umbraco.Web.UI/.eslintignore
deleted file mode 100644
index 6cac59fac0..0000000000
--- a/src/Umbraco.Web.UI/.eslintignore
+++ /dev/null
@@ -1,3 +0,0 @@
-
-/Umbraco/**
-/Umbraco_Client/**
diff --git a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
index ad372bb13f..81ca9c5a37 100644
--- a/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
+++ b/src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
@@ -520,7 +520,6 @@
-
404handlers.config
@@ -1042,6 +1041,9 @@ xcopy "$(ProjectDir)"..\packages\SqlServerCE.4.0.0.1\x86\*.* "$(TargetDir)x86\"
7140
/
http://localhost:7140
+ 7131
+ /
+ http://localhost:7131
False
False