diff --git a/ui-ngx/src/app/core/http/dashboard.service.ts b/ui-ngx/src/app/core/http/dashboard.service.ts index 3a5025a9ba..dda8b144e5 100644 --- a/ui-ngx/src/app/core/http/dashboard.service.ts +++ b/ui-ngx/src/app/core/http/dashboard.service.ts @@ -72,7 +72,7 @@ export class DashboardService { } public exportDashboard(dashboardId: string, config?: RequestConfig): Observable { - return this.http.get(`/api/dashboard/${dashboardId}?inlineImages=true`, defaultHttpOptionsFromConfig(config)); + return this.http.get(`/api/dashboard/${dashboardId}?includeResources=true`, defaultHttpOptionsFromConfig(config)); } public getDashboardInfo(dashboardId: string, config?: RequestConfig): Observable { diff --git a/ui-ngx/src/app/core/http/widget.service.ts b/ui-ngx/src/app/core/http/widget.service.ts index 8b57feb488..293a7ff98c 100644 --- a/ui-ngx/src/app/core/http/widget.service.ts +++ b/ui-ngx/src/app/core/http/widget.service.ts @@ -144,7 +144,7 @@ export class WidgetService { public exportBundleWidgetTypesDetails(widgetsBundleId: string, config?: RequestConfig): Observable> { - return this.http.get>(`/api/widgetTypesDetails?widgetsBundleId=${widgetsBundleId}&inlineImages=true`, + return this.http.get>(`/api/widgetTypesDetails?widgetsBundleId=${widgetsBundleId}&includeResources=true`, defaultHttpOptionsFromConfig(config)); } @@ -212,7 +212,7 @@ export class WidgetService { public exportWidgetType(widgetTypeId: string, config?: RequestConfig): Observable { - return this.http.get(`/api/widgetType/${widgetTypeId}?inlineImages=true`, + return this.http.get(`/api/widgetType/${widgetTypeId}?includeResources=true`, defaultHttpOptionsFromConfig(config)); }