File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed
Expand file tree Collapse file tree 2 files changed +5
-9
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 ( ) ;
@@ -21,9 +22,10 @@ export default function ProjectsList() {
2122 return (
2223 < >
2324 < AnalyticalTable
25+ style = { { margin : '12px' } }
2426 columns = { [
2527 {
26- Header : 'Projects' ,
28+ Header : t ( 'ProjectsListView.title' ) ,
2729 accessor : 'projectName' ,
2830 Cell : ( instance : any ) => (
2931 < div
Original file line number Diff line number Diff line change 1- import {
2- ObjectPage ,
3- ObjectPageSection ,
4- ObjectPageTitle ,
5- } from '@ui5/webcomponents-react' ;
1+ import { ObjectPage , ObjectPageTitle } from '@ui5/webcomponents-react' ;
62import ProjectsList from '../components/Projects/ProjectsList.tsx' ;
73import IntelligentBreadcrumbs from '../components/Core/IntelligentBreadcrumbs.tsx' ;
84import { ProjectListToolbar } from '../components/Projects/ProjectListToolbar.tsx' ;
@@ -22,9 +18,7 @@ export default function ProjectsListView() {
2218 />
2319 }
2420 >
25- < ObjectPageSection id = "projects" titleText = { t ( 'ProjectsListView.title' ) } >
26- < ProjectsList />
27- </ ObjectPageSection >
21+ < ProjectsList />
2822 </ ObjectPage >
2923 ) ;
3024}
You can’t perform that action at this time.
0 commit comments