mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 05:25:26 +02:00
Fix about page (#563)
* Fix error 500 in about page * Fix log details not showing
This commit is contained in:
parent
8607b9891b
commit
9d64345321
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ export const metaAPI = {
|
|||
},
|
||||
|
||||
async getLogText(num) {
|
||||
const response = await apiReq.get(API_ROUTES.debugLog(num));
|
||||
const response = await apiReq.get(API_ROUTES.debugLogNum(num));
|
||||
return response.data;
|
||||
},
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ class AppSettings(BaseSettings):
|
|||
|
||||
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_PASSWORD: str = "mealie"
|
||||
POSTGRES_SERVER: str = "postgres"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue