fixes organisation logo not showing
This commit is contained in:
parent
2dee1dec41
commit
45b8af2860
|
@ -37,7 +37,11 @@
|
|||
async function uploadLogo(file) {
|
||||
let data = new FormData()
|
||||
data.append("file", file)
|
||||
const res = await post("/api/global/configs/upload/settings/logo", data, {})
|
||||
const res = await post(
|
||||
"/api/admin/configs/upload/settings/logoUrl",
|
||||
data,
|
||||
{}
|
||||
)
|
||||
return await res.json()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue