diff --git a/src/components/apis/history-of-api/ko/runtime/api-history.html b/src/components/apis/history-of-api/ko/runtime/api-history.html
index e16f3f42a..c92198336 100644
--- a/src/components/apis/history-of-api/ko/runtime/api-history.html
+++ b/src/components/apis/history-of-api/ko/runtime/api-history.html
@@ -26,7 +26,7 @@
diff --git a/src/services/apiService.ts b/src/services/apiService.ts
index 4340c41c1..b63667a85 100644
--- a/src/services/apiService.ts
+++ b/src/services/apiService.ts
@@ -75,7 +75,7 @@ export class ApiService {
const query = "/apis?$filter=isCurrent eq true";
const apisPage = await this.mapiClient.get>(query);
const result = apisPage.value
- .filter(x => x.properties.apiVersionSetId && Utils.getResourceName("api-version-sets", x.properties.apiVersionSetId, "shortId") === versionSetId)
+ .filter(x => x.properties.apiVersionSetId && Utils.getResourceName("apiVersionSets", x.properties.apiVersionSetId, "shortId") === versionSetId)
.map(x => new Api(x));
return result;
@@ -239,7 +239,7 @@ export class ApiService {
}
if (apiContract.properties.apiVersionSetId && !apiContract.properties.apiVersionSet) { // Filling the missing version set
- const setId = Utils.getResourceName("api-version-sets", apiContract.properties.apiVersionSetId, "shortId");
+ const setId = Utils.getResourceName("apiVersionSets", apiContract.properties.apiVersionSetId, "shortId");
const apiVersionSetContract = await this.getApiVersionSet(setId);
apiContract.properties.apiVersionSet = apiVersionSetContract;
}