From 61fcb168bd1c857c46307571634824cfee864cad Mon Sep 17 00:00:00 2001 From: Sanjay Jaiswal Date: Fri, 28 Feb 2025 12:41:58 +0530 Subject: [PATCH 1/3] fixing sidebar bug Signed-off-by: Sanjay Jaiswal --- components/atg/components/SideBarContent/SideBarNormal.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/atg/components/SideBarContent/SideBarNormal.tsx b/components/atg/components/SideBarContent/SideBarNormal.tsx index a1b4d67f..98daf21e 100644 --- a/components/atg/components/SideBarContent/SideBarNormal.tsx +++ b/components/atg/components/SideBarContent/SideBarNormal.tsx @@ -328,6 +328,7 @@ export default function SideBarNormal({ className={`${ SideBartheme ? "text-secondary-300" : "text-gray-300" } font-semibold`} + sx={{whiteSpace:"nowrap"}} > {step.label} @@ -342,6 +343,7 @@ export default function SideBarNormal({ "&::-webkit-scrollbar": { display: "none", }, + height:"auto", }} > From bf14d677df818e10e794bfce7cd4c426ddaf4e48 Mon Sep 17 00:00:00 2001 From: Manas Manohar <21006907+manasmanohar@users.noreply.github.com> Date: Fri, 7 Mar 2025 17:41:03 +0530 Subject: [PATCH 2/3] chore: update readme (#181) Signed-off-by: manasmanohar <21006907+manasmanohar@users.noreply.github.com> Signed-off-by: Sanjay Jaiswal --- CONTRIBUTING.md | 4 ++++ README.md | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 955acf08..85ef6fb3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,8 @@ # Contributing to Keploy +> Contributor Notice: +This repository is now dedicated exclusively to the Keploy API Playground. As part of an ongoing migration, the Keploy Playground will remain in this repository for now, but it will be moved to a new repository in the future. + +> GSoC Qualification Task: As this playground forms a part of our GSoC qualification tasks, we welcome contributions only for enhancing and maintaining the playground features. Thank you for your interest in Keploy and for taking the time to contribute to this project. 🙌 Keploy is a project by developers for developers and there are a lot of ways you can contribute. diff --git a/README.md b/README.md index 404f163e..56873958 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +> Contributor Notice: +This repository is now dedicated exclusively to the Keploy API Playground. As part of an ongoing migration, the Keploy Playground will remain in this repository for now, but it will be moved to a new repository in the future. + +> GSoC Qualification Task: As this playground forms a part of our GSoC qualification tasks, we welcome contributions only for enhancing and maintaining the playground features. + # Getting Started 1. **Ensure Node.js 18.x.x is installed** on your machine. From 20c25b0c1ede08391d99c07cd53f37bb2ffbc81d Mon Sep 17 00:00:00 2001 From: Sanjay Jaiswal Date: Mon, 10 Mar 2025 12:30:26 +0530 Subject: [PATCH 3/3] fixing width issue of sidebar Signed-off-by: Sanjay Jaiswal --- components/atg/Editor/editor/code.tsx | 2 +- components/atg/editor.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/atg/Editor/editor/code.tsx b/components/atg/Editor/editor/code.tsx index 5b53455e..c2a82927 100644 --- a/components/atg/Editor/editor/code.tsx +++ b/components/atg/Editor/editor/code.tsx @@ -256,7 +256,7 @@ export const Code = ({ showText ? "w-full" : "w-0" }`} > -

+

Side Content

diff --git a/components/atg/editor.tsx b/components/atg/editor.tsx index 5ef56731..0b238253 100644 --- a/components/atg/editor.tsx +++ b/components/atg/editor.tsx @@ -303,6 +303,7 @@ const Editor = ({ goFullScreen = false }: { goFullScreen?: boolean }) => { className={`relative flex flex-col ${ showSideContent ? "w-8/12" : "w-full" } h-full transition-all mt- duration-300`} + style={{ minWidth: "775px" }} > {/* Code and Terminal */} {files.length !== 0 ? (