From f775e9844cd03be63910883a947520b20027e68e Mon Sep 17 00:00:00 2001 From: Tiago Melo Date: Mon, 22 Oct 2018 11:57:01 +0100 Subject: [PATCH] mgr/dashboard: Fix problem with ErasureCodeProfileService ErasureCodeProfileService was being provided twice and that was causing problems in production mode. Fixes: https://tracker.ceph.com/issues/36544 Signed-off-by: Tiago Melo --- .../frontend/src/app/shared/api/erasure-code-profile.service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/api/erasure-code-profile.service.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/api/erasure-code-profile.service.ts index 47c1f6c1c7d5d..c019355874683 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/api/erasure-code-profile.service.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/api/erasure-code-profile.service.ts @@ -6,7 +6,6 @@ import { ApiModule } from './api.module'; @Injectable({ providedIn: ApiModule }) -@Injectable() export class ErasureCodeProfileService { constructor(private http: HttpClient) {} -- 2.47.3