mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
fix(kube): fixed kube config download info issue. (#6386)
This commit is contained in:
parent
1b1a50d6b5
commit
bc70198102
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ function KubernetesConfigFactory($http, EndpointProvider, API_ENDPOINT_KUBERNETE
|
|||
return $http({
|
||||
method: 'GET',
|
||||
url: `${API_ENDPOINT_KUBERNETES}/config`,
|
||||
params: { ids: environmentIDs.map((x) => parseInt(x)) },
|
||||
params: { ids: JSON.stringify(environmentIDs.map((x) => parseInt(x))) },
|
||||
responseType: 'blob',
|
||||
headers: {
|
||||
Accept: 'text/yaml',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue