Skip to content

Commit 5621541

Browse files
committed
Update ProjectsList.tsx
1 parent 04e8a14 commit 5621541

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

src/components/Projects/ProjectsList.tsx

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,12 @@ export default function ProjectsList() {
3636
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3737
Cell: (instance: any) => (
3838
<Link
39-
// design={'Transparent'}
39+
design={'Emphasized'}
4040
style={{
41-
// cursor: 'pointer',
4241
width: '100%',
4342
textAlign: 'left',
44-
// color: ThemingParameters.sapLinkColor,
45-
// fontWeight: 'bold',
46-
// display: 'flex',
47-
// justifyContent: 'flex-start',
48-
// alignItems: 'center',
43+
paddingTop: '0.5rem',
44+
paddingBottom: '0.5rem',
4945
}}
5046
onClick={() => {
5147
navigate(`/mcp/projects/${instance.cell.row.original?.projectName}`);
@@ -58,7 +54,7 @@ export default function ProjectsList() {
5854
{
5955
Header: 'Namespace',
6056
accessor: 'nameSpace',
61-
57+
width: 340,
6258
// eslint-disable-next-line @typescript-eslint/no-explicit-any
6359
Cell: (instance: any) => (
6460
<div
@@ -68,6 +64,7 @@ export default function ProjectsList() {
6864
gap: '0.5rem',
6965
alignItems: 'center',
7066
width: '100%',
67+
7168
cursor: 'pointer',
7269
}}
7370
>
@@ -99,9 +96,9 @@ export default function ProjectsList() {
9996
),
10097
},
10198
{
102-
Header: t('common.options'),
99+
Header: '',
103100
accessor: 'options',
104-
width: 85,
101+
width: 60,
105102
disableFilters: true,
106103
hAlign: 'Center',
107104
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -110,7 +107,7 @@ export default function ProjectsList() {
110107
style={{
111108
width: '100%',
112109
display: 'flex',
113-
justifyContent: 'end',
110+
justifyContent: 'center',
114111
alignItems: 'center',
115112
}}
116113
>

0 commit comments

Comments
 (0)