Fix install.tmpl input default value (#611)
* Fix install.tmpl input default value * Update db_user to gitea * Add when INSTALL_LOCK = false
This commit is contained in:
parent
973282dae2
commit
19570f2d43
1 changed files with 6 additions and 0 deletions
|
@ -209,6 +209,12 @@ function initInstall() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($('#db_host').val()=="") {
|
||||||
|
$('#db_host').val("127.0.0.1:3306");
|
||||||
|
$('#db_user').val("gitea");
|
||||||
|
$('#db_name').val("gitea");
|
||||||
|
}
|
||||||
|
|
||||||
// Database type change detection.
|
// Database type change detection.
|
||||||
$("#db_type").change(function () {
|
$("#db_type").change(function () {
|
||||||
var sqliteDefault = 'data/gitea.db';
|
var sqliteDefault = 'data/gitea.db';
|
||||||
|
|
Reference in a new issue