fix: backup path with webbasepath (#4223)

* Update BackupModal.vue

add base path to importDB API call

* fix

add base path to importDB API call
This commit is contained in:
GRCR13
2026-05-10 23:48:35 +03:00
committed by GitHub
parent 887fca86ec
commit 30469fcd10
3 changed files with 10 additions and 8 deletions

View File

@@ -20,7 +20,7 @@ function exportDb() {
// The Go endpoint streams x-ui.db as a download. Setting
// window.location triggers a browser download without leaving
// the page (the Go side responds with Content-Disposition: attachment).
window.location = '/panel/api/server/getDb';
window.location = window.__X_UI_BASE_PATH__+'panel/api/server/getDb';
}
function importDb() {