Skip to content

Commit 5b43ec5

Browse files
committed
fix the frontend
1 parent 651618f commit 5b43ec5

2 files changed

Lines changed: 0 additions & 13 deletions

File tree

core/gui/src/app/workspace/service/computing-unit-status/computing-unit-status.service.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,4 @@ export class ComputingUnitStatusService implements OnDestroy {
275275
public getSelectedComputingUnitValue(): DashboardWorkflowComputingUnit | null {
276276
return this.selectedUnitSubject.value;
277277
}
278-
279-
/**
280-
* Get the current selected computing unit value synchronously
281-
*/
282-
public getSelectedComputingUnitValue(): DashboardWorkflowComputingUnit | null {
283-
return this.selectedUnitSubject.value;
284-
}
285278
}

core/gui/src/app/workspace/service/workflow-computing-unit/workflow-computing-unit-managing.service.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,4 @@ export class WorkflowComputingUnitManagingService {
179179
.get<DashboardWorkflowComputingUnit>(`${AppSettings.getApiEndpoint()}/${COMPUTING_UNIT_BASE_URL}/${cuid}`)
180180
.pipe(map(raw => this.parseDashboardUnit(raw)));
181181
}
182-
183-
public getComputingUnit(cuid: number): Observable<DashboardWorkflowComputingUnit> {
184-
return this.http.get<DashboardWorkflowComputingUnit>(
185-
`${AppSettings.getApiEndpoint()}/${COMPUTING_UNIT_BASE_URL}/${cuid}`
186-
);
187-
}
188182
}

0 commit comments

Comments
 (0)