ui: fix path

This commit is contained in:
Aaron Greenspan
2021-01-13 10:21:47 -07:00
committed by Aiden McClelland
parent 3ecfb4e4eb
commit 57955ef22e

View File

@@ -62,7 +62,7 @@ export class LiveApiService extends ApiService {
}
async ejectExternalDisk (logicalName: string): Promise<Unit> {
return this.authRequest({ method: Method.POST, url: `/disks`, data: { logicalName } })
return this.authRequest({ method: Method.POST, url: `/disks/eject`, data: { logicalName } })
}
async updateAgent (version: string): Promise<Unit> {