Skip to content

Commit 1b4c789

Browse files
committed
Fix spelling
1 parent afb8fcf commit 1b4c789

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

public/locales/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@
158158
"Landscapers": {
159159
"headerLandscapers": "Landscapers",
160160
"multiComboBoxPlaceholder": "Select namespace",
161-
"noItemsFound": "No Deploy items found",
161+
"noItemsFound": "No Deploy Items found",
162162
"deployItems": "Deploy Items",
163163
"treeDeployItem": "Deploy Item",
164164
"treeInstallation": "Installation",
165165
"treeExecution": "Execution",
166-
"noExecutionFound": "No Exeuctions found"
166+
"noExecutionFound": "No Executions found"
167167
},
168168
"CopyButton": {
169169
"copiedMessage": "Copied To Clipboard",

src/components/ControlPlane/Landscapers.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import useResource, {
1515
import { ListNamespaces } from '../../lib/api/types/k8s/listNamespaces';
1616
import {
1717
Installation,
18-
InstalationsRequest,
18+
InstallationsRequest,
1919
} from '../../lib/api/types/landscaper/listInstallations';
2020
import {
2121
Execution,
@@ -39,7 +39,7 @@ export function Landscapers() {
3939

4040
const { data: installations = [] } = useMultipleApiResources<Installation>(
4141
selectedNamespaces,
42-
InstalationsRequest,
42+
InstallationsRequest,
4343
);
4444

4545
const { data: executions = [] } = useMultipleApiResources<Execution>(

src/lib/api/types/landscaper/listInstallations.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ export interface Installation {
2121
};
2222
}
2323

24-
export interface InstalationsListResponse {
24+
export interface InstallationsListResponse {
2525
items: Installation[];
2626
}
2727

28-
export const InstalationsRequest = (
28+
export const InstallationsRequest = (
2929
namespace: string,
30-
): Resource<InstalationsListResponse> => ({
30+
): Resource<InstallationsListResponse> => ({
3131
path: `/apis/landscaper.gardener.cloud/v1alpha1/namespaces/${namespace}/installations`,
3232
});

0 commit comments

Comments
 (0)