diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-26 22:34:48 -0600 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-26 22:34:48 -0600 |
commit | 59d0e73c3507296b31c8e741b44afc7bfe1eb695 (patch) | |
tree | 79970b755e0c5309b0f05dcd45053f91500ba85b /public/js | |
parent | 1badb2bbccfe81303f69f8dedf57c22fb89d4b99 (diff) | |
download | gitea-59d0e73c3507296b31c8e741b44afc7bfe1eb695.tar.gz gitea-59d0e73c3507296b31c8e741b44afc7bfe1eb695.zip |
Batch mirror fix
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/app.js b/public/js/app.js index a5c79a3987..b7b5deb83b 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -470,10 +470,10 @@ function initInstall() { (function () { $('#install-database').on("change", function () { var val = $(this).val(); - if (val != "sqlite") { + if (val != "SQLite3") { $('.server-sql').show(); $('.sqlite-setting').addClass("hide"); - if (val == "pgsql") { + if (val == "PostgreSQL") { $('.pgsql-setting').removeClass("hide"); } else { $('.pgsql-setting').addClass("hide"); |