Skip to content

Commit c7ab2d3

Browse files
committed
fixes
1 parent 4a1601b commit c7ab2d3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

public/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"emptyListSubtitleMessage": "Create a workspace to get started"
5353
},
5454
"ConnectButton": {
55-
"buttonText": "Connect to MCP"
55+
"buttonText": "Connect"
5656
},
5757
"MCPHealthPopoverButton": {
5858
"statusHeader": "Status",

src/components/Projects/ProjectsList.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@
44

55
.container {
66
padding: 0.75rem;
7+
}
8+
9+
.button {
10+
font-size: var(--sapFontHeader4Size);
711
}

src/components/Projects/ProjectsList.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,13 @@ export default function ProjectsList() {
9797
<Card key={item} className={styles.card}>
9898
<div className={styles.container}>
9999
<Button
100+
className={styles.button}
100101
design={ButtonDesign.Transparent}
101102
onClick={() => {
102103
navigate(`/mcp/projects/${item ?? ''}`);
103104
}}
104105
>
105-
<Title level={'H2'} size={'H4'}>
106-
{item}
107-
</Title>
106+
{item}
108107
</Button>
109108

110109
<FlexBox

0 commit comments

Comments
 (0)