mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
feat: load balancers ui
Signed-off-by: allanice001 <allanice001@gmail.com>
This commit is contained in:
@@ -10,7 +10,7 @@ export const taintsApi = {
|
||||
}),
|
||||
createTaint: (body: DtoCreateTaintRequest) =>
|
||||
withRefresh(async () => {
|
||||
return await taints.createTaint({ body })
|
||||
return await taints.createTaint({ dtoCreateTaintRequest: body })
|
||||
}),
|
||||
getTaint: (id: string) =>
|
||||
withRefresh(async () => {
|
||||
@@ -22,6 +22,6 @@ export const taintsApi = {
|
||||
}),
|
||||
updateTaint: (id: string, body: DtoUpdateTaintRequest) =>
|
||||
withRefresh(async () => {
|
||||
return await taints.updateTaint({ id, body })
|
||||
return await taints.updateTaint({ id, dtoUpdateTaintRequest: body })
|
||||
}),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user