File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Umbraco.Infrastructure/Install/InstallSteps
Umbraco.Web.UI.Client/src/installer/steps Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ public override object ViewModel
117
117
{
118
118
minCharLength = _passwordConfiguration . RequiredLength ,
119
119
minNonAlphaNumericLength = _passwordConfiguration . GetMinNonAlphaNumericChars ( ) ,
120
- quickInstallAvailable = DatabaseConfigureStep . IsSqlCeAvailable ( )
120
+ quickInstallAvailable = DatabaseConfigureStep . IsSqlCeAvailable ( ) || DatabaseConfigureStep . IsLocalDbAvailable ( ) ,
121
+ customInstallAvailable = ! GetInstallState ( ) . HasFlag ( InstallState . ConnectionStringConfigured )
121
122
} ;
122
123
}
123
124
}
Original file line number Diff line number Diff line change 1
- < div ng-controller ="Umbraco.Install.UserController ">
1
+ < div ng-controller ="Umbraco.Install.UserController ">
2
2
< h1 > Install Umbraco</ h1 >
3
3
4
4
< p > Enter your name, email and password to install Umbraco with its default settings, alternatively you can customize your installation</ p >
@@ -59,7 +59,7 @@ <h1>Install Umbraco</h1>
59
59
< div class ="control-group " ng-class ="{disabled:myForm.$invalid} ">
60
60
< div class ="controls ">
61
61
< input ng-if ="installer.current.model.quickInstallAvailable " type ="submit " ng-disabled ="myForm.$invalid " value ="Install " class ="btn btn-success " />
62
- < button ng-if ="installer.current.model.quickInstallAvailable " class ="btn btn-info control-customize " ng-disabled ="myForm.$invalid " ng-click ="validateAndForward() "> Customize</ button >
62
+ < button ng-if ="installer.current.model.quickInstallAvailable && installer.current.model.customInstallAvailable " class ="btn btn-info control-customize " ng-disabled ="myForm.$invalid " ng-click ="validateAndForward() "> Customize</ button >
63
63
64
64
< button ng-if ="!installer.current.model.quickInstallAvailable " class ="btn btn-primary control-customize " ng-disabled ="myForm.$invalid " ng-click ="validateAndForward() "> Next</ button >
65
65
</ div >
You can’t perform that action at this time.
0 commit comments