File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import useResource, {
1515import { ListNamespaces } from '../../lib/api/types/k8s/listNamespaces' ;
1616import {
1717 Installation ,
18- InstalationsRequest ,
18+ InstallationsRequest ,
1919} from '../../lib/api/types/landscaper/listInstallations' ;
2020import {
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 > (
Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments