mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-26 14:28:04 +00:00
Fix/chart-link-cluster-mode (#474)
This commit is contained in:
@@ -56,10 +56,10 @@ export function useChartRepoValues({
|
||||
version: string;
|
||||
chart: string;
|
||||
}) {
|
||||
return useQuery<any>(
|
||||
return useQuery<string>(
|
||||
["helm", "repositories", "values", chart, version],
|
||||
() =>
|
||||
apiService.fetchWithDefaults<any>(
|
||||
apiService.fetchWithDefaults<string>(
|
||||
`/api/helm/repositories/values?chart=${chart}&version=${version}`,
|
||||
{
|
||||
headers: { "Content-Type": "text/plain; charset=utf-8" },
|
||||
|
||||
Reference in New Issue
Block a user