annotation status path fix

This commit is contained in:
Diamantis Tziotzios 2024-07-03 18:39:04 +03:00
parent 54094b9e31
commit f2c9120d0c
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import { catchError } from "rxjs/operators";
@Injectable()
export class StatusService {
private get apiBase(): string { return `${this.installationConfiguration.annotationServiceAddress}api/status`; }
private get apiBase(): string { return `${this.installationConfiguration.annotationServiceAddress}api/annotation/status`; }
constructor(
private installationConfiguration: ConfigurationService,