Update database type wording and dropdown width

This commit is contained in:
Sebastiaan Janssen
2014-03-18 17:45:26 +01:00
parent 00e1556504
commit c83db52bd7
2 changed files with 7 additions and 3 deletions

View File

@@ -2,10 +2,10 @@ angular.module("umbraco.install").controller("Umbraco.Installer.DataBaseControll
$scope.checking = false;
$scope.dbs = [
{name: 'Embedded database SQL', id: 0},
{name: 'Microsft SQL Server', id: 1},
{name: 'Microsoft SQL Server Compact (SQL CE)', id: 0},
{name: 'Microsoft SQL Server', id: 1},
{name: 'MySQL', id: 2},
{name: 'Custom connection-string', id: -1}];
{name: 'Custom connection string', id: -1}];
if(installerService.status.current.model.dbType === undefined){
installerService.status.current.model.dbType = 0;

View File

@@ -277,4 +277,8 @@ height: 5px;
overflow:auto;
height:280px;
display:block;
}
select {
width:320px;
}