Fix about page (#563)

* Fix error 500 in about page

* Fix log details not showing
This commit is contained in:
sephrat 2021-06-18 14:50:51 +02:00 committed by GitHub
parent 8607b9891b
commit 9d64345321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export const metaAPI = {
}, },
async getLogText(num) { async getLogText(num) {
const response = await apiReq.get(API_ROUTES.debugLog(num)); const response = await apiReq.get(API_ROUTES.debugLogNum(num));
return response.data; return response.data;
}, },

View File

@ -110,7 +110,7 @@ class AppSettings(BaseSettings):
SECRET: str = determine_secrets(DATA_DIR, PRODUCTION) SECRET: str = determine_secrets(DATA_DIR, PRODUCTION)
DB_ENGINE: Optional[str] = None # Optional: 'sqlite', 'postgres' DB_ENGINE: str = "sqlite" # Optional: 'sqlite', 'postgres'
POSTGRES_USER: str = "mealie" POSTGRES_USER: str = "mealie"
POSTGRES_PASSWORD: str = "mealie" POSTGRES_PASSWORD: str = "mealie"
POSTGRES_SERVER: str = "postgres" POSTGRES_SERVER: str = "postgres"