Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Fix bug with database editing
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkadius committed Jun 15, 2020
1 parent cf0aa51 commit 8dccc28
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.4]
* Fix for database editing

## [2.0.3]
* Fix for asset downloading

Expand Down
11 changes: 11 additions & 0 deletions frontend/src/views/pages/configuration/Database.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,17 @@
},
async created() {
this.serverConfig = await EqemuAdminClient.getServerConfig()
if (!this.serverConfig.server.content_database) {
this.serverConfig.server.content_database = {
db: "",
host: "",
port: "",
username: "",
password: "",
}
}
this.loaded = true
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eqemu-admin",
"version": "2.0.3",
"version": "2.0.4",
"private": true,
"bin": "./app/bin/admin",
"scripts": {
Expand Down

0 comments on commit 8dccc28

Please sign in to comment.