File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { projectnameToNamespace } from "../../utils/index"
88import "@ui5/webcomponents-icons/dist/copy"
99import "@ui5/webcomponents-icons/dist/arrow-right"
1010import { ListProjectNames } from "../../lib/api/types/crate/listProjectNames" ;
11+ import { t } from "i18next" ;
1112
1213export default function ProjectsList ( ) {
1314 const navigate = useLuigiNavigate ( ) ;
@@ -19,12 +20,13 @@ export default function ProjectsList() {
1920 return (
2021 < >
2122 < AnalyticalTable
23+ style = { { margin : "12px" } }
2224 onRowClick = { ( e : any ) => {
2325 navigate ( `/mcp/projects/${ data ? [ e . detail . row . values . projectName ] : "" } ` ) ;
2426 } }
2527 columns = { [
2628 {
27- Header : "Projects" ,
29+ Header : t ( 'ProjectsListView.title' ) ,
2830 accessor : "projectName" ,
2931 Cell : ( instance : any ) => (
3032 < div style = { {
Original file line number Diff line number Diff line change @@ -24,9 +24,7 @@ export default function ProjectsListView() {
2424 />
2525 }
2626 >
27- < ObjectPageSection id = "projects" titleText = { t ( 'ProjectsListView.title' ) } >
2827 < ProjectsList />
29- </ ObjectPageSection >
3028 </ ObjectPage >
3129 ) ;
3230}
You can’t perform that action at this time.
0 commit comments