Skip to content

Commit 2f2fa54

Browse files
authored
Merge branch 'master' into feat/add-academy-repos
2 parents e06bde7 + 1dc866d commit 2f2fa54

10 files changed

Lines changed: 14 additions & 24 deletions

File tree

.github/workflows/lighthouseci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: lighthouseci
22
on:
33
workflow_dispatch:
4-
pull_request:
5-
paths-ignore:
6-
- "*.md"
7-
- "*.github/**"
4+
schedule:
5+
- cron: '0 3 * * *' # Runs every day at 3am UTC
6+
# pull_request:
7+
# paths-ignore:
8+
# - "*.md"
9+
# - "*.github/**"
810

911
jobs:
1012
lighthouseci:

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@mui/icons-material": "^6.4.6",
4343
"@mui/material": "^5.15.11",
4444
"@react-icons/all-files": "^4.1.0",
45-
"@sistent/sistent": "^0.15.0",
45+
"@sistent/sistent": "^0.15.3",
4646
"@svgr/webpack": "^8.0.1",
4747
"@types/mui-datatables": "^4.3.12",
4848
"ajv": "^8.17.1",

src/collections/resources/articles/layer5-academy-vs-moocit/academy.svg renamed to src/collections/resources/comparison/layer5-academy-vs-moocit/academy.svg

File renamed without changes.

src/collections/resources/articles/layer5-academy-vs-moocit/index.mdx renamed to src/collections/resources/comparison/layer5-academy-vs-moocit/index.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,3 @@ Moocit lacks content attribution and orchestration with hands-on labs. Feature c
100100

101101
</div>
102102
</ResourcesWrapper>
103-

src/components/SistentNavigation/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import React, { useState } from "react";
22
import { HiOutlineChevronLeft } from "@react-icons/all-files/hi/HiOutlineChevronLeft";
33
import { Link } from "gatsby";
4-
import { IoMdClose } from "@react-icons/all-files/io/IoMdClose";
5-
import { IoIosArrowDropdownCircle } from "@react-icons/all-files/io/IoIosArrowDropdownCircle";
64
import { IoIosArrowForward } from "@react-icons/all-files/io/IoIosArrowForward";
75
import { componentsData } from "../../sections/Projects/Sistent/components/content";
86

97
import TOCWrapper from "./toc.style";
108
import { IoIosArrowDown } from "@react-icons/all-files/io/IoIosArrowDown";
11-
import { IoIosArrowUp } from "@react-icons/all-files/io/IoIosArrowUp";
129

1310
import { useLocation } from "@reach/router";
1411

src/sections/Kanvas/Kanvas-visualize/kanvas-visualize-features.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const KanvasisualizerFeatures = () => {
191191
<div className="feature-image">
192192
<img src={isDark ? ServicePerformanceGearDark : ServicePerformanceGearLight} alt="Service Performance" style={{ position: "absolute", zIndex: "0" }} />
193193
<ServicePerformanceMeter alt="" className={hoveredFeature == "Feature5" ? "meter-visible" : "secondary-image"}
194-
style={{ height: "auto", width: "70%",position: "relative", zIndex: "10", transformOrigin: "center center" }}
194+
style={{ height: "auto", width: "70%", position: "relative", zIndex: "10", transformOrigin: "center center" }}
195195
/>
196196
</div>
197197
<h3>Service Performance</h3>

src/sections/Meshery/Meshery-mange-mesh/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import React from "react";
2-
import { Col, Container, Row } from "../../../reusecore/Layout";
2+
import { Container } from "../../../reusecore/Layout";
33
import styled from "styled-components";
4-
import Button from "../../../reusecore/Button";
5-
import { GiClockwork } from "@react-icons/all-files/gi/GiClockwork";
6-
import { StaticImage } from "gatsby-plugin-image";
74
import KanvasVisualizerViews from "../../Home/Playground-home";
8-
const MultiMesh = "./multi-mesh.svg";
95

106
const ManageMeshWrapper = styled.div`
117
margin: 4rem auto;

src/sections/Projects/Sistent/components/text-input/code.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState } from "react";
1+
import React from "react";
22
import { navigate } from "gatsby";
33
import { useLocation } from "@reach/router";
44

@@ -58,7 +58,6 @@ const codes = [
5858
const TextInputCode = () => {
5959
const location = useLocation();
6060
const { isDark } = useStyledDarkMode();
61-
const [inputValue, setInputValue] = useState("");
6261

6362
return (
6463
<SistentLayout title="Text Input">

src/sections/Projects/Sistent/identity/color/code.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,6 @@ const componentColors = [
404404

405405
const CopyColor = ({ hex , token }) => {
406406
const [copyText, setCopyText] = useState("Copy");
407-
const [showCopy, setShowCopy] = useState(false);
408407

409408
const handleCopy = async () => {
410409
await copyToClipboard(hex || token);
@@ -433,8 +432,6 @@ const CopyColor = ({ hex , token }) => {
433432
theme.palette.action?.hover || "rgba(0, 0, 0, 0.04)",
434433
},
435434
}}
436-
onMouseEnter={() => setShowCopy(true)}
437-
onMouseLeave={() => setShowCopy(false)}
438435
onClick={handleCopy}
439436
>
440437
<span>{hex || token }</span>

0 commit comments

Comments
 (0)