Skip to content

Commit 56aeb40

Browse files
authored
Merge branch 'master' into new
2 parents c21c3d4 + f5993e5 commit 56aeb40

File tree

19 files changed

+27
-10
lines changed

19 files changed

+27
-10
lines changed

Diff for: src/assets/data/tutorials/index.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,16 @@ const data = [
115115
]
116116
},
117117
{
118-
date: "Oct. 7 2021",
119-
topic: "Working with Meshery Docs and Jekyll",
118+
date: "Apr. 10, 2025",
119+
topic: "Working with Meshery Docs",
120120
resources: {
121-
slides: "https://docs.google.com/presentation/d/1GhJH3YF5mBeYX7I7ItEd-EbUmk1cnn3BdK1X230kwII/edit?usp=sharing",
122-
recording: "https://www.youtube.com/watch?v=PBq7mIPnPhM"
121+
slides: "https://docs.google.com/presentation/d/1kQIzSa4f-pOH8cM4SwEdbFZGI_SXVyyhc9zUZPB7bsI/edit?usp=sharing",
122+
recording: "https://www.youtube.com/watch?v=7wRbbOSwrtI"
123123
},
124124
presenters: [
125125
{
126-
link: "/community/members/aadhitya-amarendiran",
127-
name: "Aadhitya Amarendiran",
126+
link: "/community/members/zihan-kuang",
127+
name: "Zihan Kuang"
128128
}
129129
]
130130
},

Diff for: src/collections/integrations/aws-ec2-controller/index.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ components: [
134134
"colorIcon": "icons/components/transit-gateway-vpc-attachment/icons/color/transit-gateway-vpc-attachment-color.svg",
135135
"whiteIcon": "icons/components/transit-gateway-vpc-attachment/icons/white/transit-gateway-vpc-attachment-white.svg",
136136
"description": "",
137+
},
138+
{
139+
"name": "transit-gateway-vpc-attachment",
140+
"colorIcon": "icons/components/transit-gateway-vpc-attachment/icons/color/transit-gateway-vpc-attachment-color.svg",
141+
"whiteIcon": "icons/components/transit-gateway-vpc-attachment/icons/white/transit-gateway-vpc-attachment-white.svg",
142+
"description": "",
137143
}]
138144
featureList: [
139145
"Optimized CPU Configurations",

Diff for: src/collections/members/mia-grenell/mia-grenell.jpg

100644100755
1.77 MB
Loading

Diff for: src/collections/programs/gsoc-2025/index.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import playground from "./meshery-playground-alt-4.webp";
4747
- **Expected outcome:**
4848
- Resilient websockets and GraphQL subscriptions for Meshery, enabling multi-player collaboration functionality.
4949
- **Recommended Skills:** Golang, Kubernetes, Azure, well-written and well-spoken English
50-
- **Mentor(s):** <Link to="/community/members/lee-calcote">Lee Calcote</Link>, <Link to="/community/members/aabid-sofi">Aabid Sofi</Link>
50+
- **Mentor(s):** <Link to="/community/members/lee-calcote">Lee Calcote</Link>
5151
- **Expected project size:** 175 hours
5252
- **Difficulty:** Medium
5353
- **Upstream Issue (URL):** https://github.com/meshery/meshery/issues/13554
@@ -117,7 +117,7 @@ import playground from "./meshery-playground-alt-4.webp";
117117
- **Expected outcome:**
118118
- Development of comprehensive E2E test cases for additional Meshery components using Playwright.
119119
- **Recommended Skills:** JavaScript, Playwright, GitHub Workflows, familiarity with React or Nextjs would be helpful, CI/CD
120-
- **Mentor(s):** <Link to="/community/members/lee-calcote">Lee Calcote</Link>, <Link to="/community/members/aabid-sofi">Aabid Sofi</Link>
120+
- **Mentor(s):** <Link to="/community/members/lee-calcote">Lee Calcote</Link>, <Link to="/community/members/ian-whitney">Ian Whitney</Link>
121121
- **Expected project size:** medium (175 hours)
122122
- **Difficulty:** Hard
123123
- **Upstream Issue (URL):** https://github.com/meshery/meshery/issues/13514

Diff for: src/components/Landscape-Table/LandscapeTable.style.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ export const TableWrapper = styled.div`
44
55
overflow-x: auto;
66
7+
th input {
8+
color: ${props => props.theme.text};
9+
background: ${props => props.theme.body};
10+
border: 1px solid ${props => props.theme.text} !important;
11+
padding: 5px;
12+
&::placeholder {
13+
color: ${props => props.theme.text};
14+
opacity: 0.7;
15+
}
16+
}
17+
718
.gatsby-image-wrapper {
819
img {
920
width: 1.5rem;
@@ -34,7 +45,7 @@ table {
3445
th {
3546
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
3647
background: ${props => props.theme.grey404040ToGrey1E2117} ;
37-
color: #ffffff;
48+
color: ${props => props.theme.text};
3849
height: 4rem;
3950
font-weight: 600;
4051
font-size: 1rem;
@@ -76,4 +87,4 @@ table {
7687
}
7788
}
7889
}
79-
`;
90+
`;

0 commit comments

Comments
 (0)