From 67d6e9f3df9700e4aad7645c66d33ef8e2da5be7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tobias=20M=C3=B8nster?=
Date: Fri, 21 Oct 2022 21:21:21 +0200
Subject: [PATCH] Renames Installer form from "myForm" to "installerForm"
(#12806)
Co-authored-by: Joe Glombek
(cherry picked from commit 6cad4013e48c1b2f1442025911ce1f1f4c3ebf7c)
---
.../src/installer/steps/database.controller.js | 2 +-
.../src/installer/steps/database.html | 6 +++---
.../src/installer/steps/user.controller.js | 2 +-
.../src/installer/steps/user.html | 10 +++++-----
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js b/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js
index 33c0ffca12..30d42299b5 100644
--- a/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js
+++ b/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js
@@ -29,7 +29,7 @@ angular.module("umbraco.install").controller("Umbraco.Installer.DataBaseControll
$scope.validateAndForward = function() {
- if (!$scope.checking && this.myForm.$valid)
+ if (!$scope.checking && this.installerForm.$valid)
{
$scope.checking = true;
$scope.invalidDbDns = false;
diff --git a/src/Umbraco.Web.UI.Client/src/installer/steps/database.html b/src/Umbraco.Web.UI.Client/src/installer/steps/database.html
index e75a82f9df..4282770e75 100644
--- a/src/Umbraco.Web.UI.Client/src/installer/steps/database.html
+++ b/src/Umbraco.Web.UI.Client/src/installer/steps/database.html
@@ -6,7 +6,7 @@