- {isFolder &&
+ {hasDescription && (
+
+ )}
+
+ {isFolder && node.children &&
node.children.map((child) => (
{renderNode(child, level + 1)}
diff --git a/src/css/custom.css b/src/css/custom.css
index 3e49b36f0..b26d76aa1 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -288,12 +288,9 @@ ul.yaml-list-elem > li:before {
.config-explorer-file-node {
display: flex;
align-items: center;
- border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 10px;
- padding: 3px 10px;
margin: 5px;
width: fit-content;
- background-color: var(--config-explorer-file-node-text-color);
}
.config-explorer-file-node:hover {
@@ -314,3 +311,20 @@ ul.yaml-list-elem > li:before {
text-decoration: none;
color: var(--config-node-highlight-text-color);
}
+
+.config-explorer-popup-window {
+ position: absolute;
+ background-color: #1c1e21;
+ padding: 10px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ border-radius: 5px;
+ z-index: 1000;
+ top: 100%;
+ left: 0;
+ width: fit-content;
+}
+
+.config-explorer-popup-window-open-tag:hover {
+ font-weight: bold;
+ cursor: pointer;
+}
From ddd94eebe77312a58de5a98b677fd1a177d0c56d Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Tue, 5 Sep 2023 12:47:50 +0100
Subject: [PATCH 04/16] styling changes
---
src/components/ConfigurationStructureDiagram.tsx | 8 ++++----
src/css/custom.css | 3 +--
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index 746bec90e..b77de40f3 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -83,9 +83,9 @@ export default function ConfigurationStructureDiagram({}) {
cursor: hasDescription ? "pointer" : "auto",
};
- const handlePopupClick = (event) => {
+ const handleNodeOpening = (event) => {
event.stopPropagation();
- setPopupNode((prevNode) => (prevNode === node ? null : node));
+ setPopupNode(node);
};
return (
@@ -95,13 +95,13 @@ export default function ConfigurationStructureDiagram({}) {
)}
-
{isFolder ? "📁" : "📄"}
{node.name}
{hasDescription && (
- ⓘ
+ ⓘ
)}
diff --git a/src/css/custom.css b/src/css/custom.css
index 6a05fe0e3..e54110592 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -290,11 +290,10 @@ ul.yaml-list-elem > li:before {
display: flex;
align-items: center;
border-radius: 10px;
- margin: 5px;
width: fit-content;
}
-.config-explorer-file-node:hover {
+.config-explorer-file-node-with-link:hover {
background-color: rgba(0, 0, 0, 0.1);
cursor: pointer;
text-decoration: none;
From 392da39909435198b71fb62523d027fa19d5d837 Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Sat, 9 Sep 2023 22:23:30 +0100
Subject: [PATCH 05/16] Styling changes
---
.../ConfigurationStructureDiagram.tsx | 18 +++++++++---------
src/css/custom.css | 13 +++++++++----
2 files changed, 18 insertions(+), 13 deletions(-)
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index b77de40f3..faf95498e 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -23,14 +23,14 @@ const folderData = [
},
{ name: "banned-ips.json", type: "file", description: "WIP" },
{ name: "banned-players.json", type: "file", description: "WIP" },
- { name: "bukkit.yml", type: "file", url: "WIP" },
+ { name: "bukkit.yml", type: "file", url: "/paper/reference/bukkit-configuration" },
{ name: "commands.yml", type: "file", url: "WIP" },
- { name: "eula.txt", type: "file", description: "WIP" },
+ { name: "eula.txt", type: "file", description: "This file is in place to allow you to accept the Minecraft EULA.\nThis is required to start the server." },
{ name: "help.yml", type: "file", url: "WIP" },
{ name: "ops.json", type: "file", description: "WIP" },
{ name: "permissions.yml", type: "file", url: "WIP" },
{ name: "server.properties", type: "file", url: "/paper/reference/server-properties" },
- { name: "spigot.yml", type: "file", url: "WIP" },
+ { name: "spigot.yml", type: "file", url: "/paper/reference/spigot-configuration" },
{ name: "usercache.json", type: "file", description: "WIP" },
{ name: "whitelist.json", type: "file", description: "WIP" },
];
@@ -70,7 +70,6 @@ export default function ConfigurationStructureDiagram({}) {
const nodeStyle = {
alignItems: "center",
position: "relative",
- width: "50%",
};
if (level > 0) {
@@ -79,7 +78,6 @@ export default function ConfigurationStructureDiagram({}) {
const iconStyle = {
fontSize: "20px",
- marginRight: "8px",
cursor: hasDescription ? "pointer" : "auto",
};
@@ -101,15 +99,17 @@ export default function ConfigurationStructureDiagram({}) {
{isFolder ? "📁" : "📄"}
{node.name}
{hasDescription && (
-
ⓘ
+
ⓘ
)}
{hasDescription && (
-
-
Description:{node.description}
+
+
+ Description:
{node.description}
+
)}
diff --git a/src/css/custom.css b/src/css/custom.css
index e54110592..9f03776b4 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -312,15 +312,20 @@ ul.yaml-list-elem > li:before {
color: var(--config-node-highlight-text-color);
}
-.config-explorer-popup-window {
+.config-explorer-popup-window-container {
position: absolute;
+ z-index: 10;
+ top: 100%;
+ left: 0;
+ width: fit-content;
+}
+
+.config-explorer-popup-window {
background-color: #1c1e21;
padding: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
- z-index: 1000;
- top: 100%;
- left: 0;
+ margin-right: 100px;
width: fit-content;
}
From b4780982e96c71497b93d5d29849929ce2a72c0e Mon Sep 17 00:00:00 2001
From: olijeffers0n <69084614+olijeffers0n@users.noreply.github.com>
Date: Sun, 24 Sep 2023 16:08:04 +0100
Subject: [PATCH 06/16] Work on the css but still cant work out the z index
---
.../ConfigurationStructureDiagram.tsx | 6 +++---
src/css/custom.css | 17 ++++++++++++++---
2 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index faf95498e..aa29e3a38 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -99,7 +99,7 @@ export default function ConfigurationStructureDiagram({}) {
{isFolder ? "📁" : "📄"}
{node.name}
{hasDescription && (
-
ⓘ
+
ⓘ
)}
@@ -107,7 +107,7 @@ export default function ConfigurationStructureDiagram({}) {
{hasDescription && (
+ /*style={{ display: popupNode === node ? "block" : "none" }}*/>
Description:
{node.description}
@@ -125,7 +125,7 @@ export default function ConfigurationStructureDiagram({}) {
return (
-
+
{folderData.map(item => renderNode(item))}
diff --git a/src/css/custom.css b/src/css/custom.css
index 9f03776b4..21406705a 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -286,6 +286,10 @@ ul.yaml-list-elem > li:before {
color: rgb(148, 148, 148);
}
+.config-explorer-code-outer-container {
+ overflow: visible;
+}
+
.config-explorer-file-node {
display: flex;
align-items: center;
@@ -312,21 +316,28 @@ ul.yaml-list-elem > li:before {
color: var(--config-node-highlight-text-color);
}
-.config-explorer-popup-window-container {
+.config-explorer-popup-window-container { /* Container */
position: absolute;
- z-index: 10;
+ margin-left: 30px;
+ transform: translateZ(0);
top: 100%;
left: 0;
width: fit-content;
+ z-index: 10;
}
-.config-explorer-popup-window {
+.config-explorer-popup-window { /* Inner */
background-color: #1c1e21;
padding: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
margin-right: 100px;
width: fit-content;
+ z-index: 20;
+}
+
+.config-explorer-popup-window-open-tag { /* (i) tag */
+ z-index: 15; /* Between container and popup window */
}
.config-explorer-popup-window-open-tag:hover {
From 1d9d278642b58bc1ffff5990ec01e93c46054084 Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Thu, 22 Feb 2024 00:23:50 +0000
Subject: [PATCH 07/16] It like actually works now TM
---
.../ConfigurationStructureDiagram.tsx | 44 +++++++------------
src/css/custom.css | 26 +++++++++--
2 files changed, 37 insertions(+), 33 deletions(-)
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index aa29e3a38..8436c2d24 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -21,24 +21,24 @@ const folderData = [
{ name: "paper-world.yml", url: "/paper/reference/configuration#per-world-values" },
],
},
- { name: "banned-ips.json", type: "file", description: "WIP" },
- { name: "banned-players.json", type: "file", description: "WIP" },
+ { name: "banned-ips.json", type: "file", description: "This file stores all the banned IP addresses on the server." },
+ { name: "banned-players.json", type: "file", description: "This file stores all the banned player information for the server." },
{ name: "bukkit.yml", type: "file", url: "/paper/reference/bukkit-configuration" },
- { name: "commands.yml", type: "file", url: "WIP" },
+ { name: "commands.yml", type: "file", url: "/paper/reference/bukkit-commands-configuration" },
{ name: "eula.txt", type: "file", description: "This file is in place to allow you to accept the Minecraft EULA.\nThis is required to start the server." },
- { name: "help.yml", type: "file", url: "WIP" },
- { name: "ops.json", type: "file", description: "WIP" },
- { name: "permissions.yml", type: "file", url: "WIP" },
+ { name: "help.yml", type: "file", description: "This file provides you with a wide variety of ways to configure the /help system in your Paper Server." },
+ { name: "ops.json", type: "file", description: "ops.json is a JSON file located in the root directory of a server containing a list of players with operator status." },
+ { name: "permissions.yml", type: "file", description: "The permissions.yml file allows creating of permission nodes so that server admins can easily distribute permissions." },
{ name: "server.properties", type: "file", url: "/paper/reference/server-properties" },
{ name: "spigot.yml", type: "file", url: "/paper/reference/spigot-configuration" },
- { name: "usercache.json", type: "file", description: "WIP" },
- { name: "whitelist.json", type: "file", description: "WIP" },
+ { name: "usercache.json", type: "file", description: "This file acts as a cache of user information that has been requested from Mojang's servers when they join the server or their texture is used as a Head." },
+ { name: "whitelist.json", type: "file", description: "This is is a server configuration file that stores the usernames of players who have been whitelisted on a server." },
];
const IndentationArrow = ({ level }) => {
if (level === 0) {
- return (<>>);
+ return null;
}
const arrowStyle = {
@@ -50,7 +50,7 @@ const IndentationArrow = ({ level }) => {
return (
- {level > 0 && Array(level).fill("→").join("")}
+ {level > 0 && "→".repeat(level)}
);
};
@@ -67,47 +67,33 @@ export default function ConfigurationStructureDiagram({}) {
const hasDescription = "description" in node;
const hasUrl = "url" in node;
- const nodeStyle = {
- alignItems: "center",
- position: "relative",
- };
-
- if (level > 0) {
- nodeStyle.display = "flex";
- }
-
- const iconStyle = {
- fontSize: "20px",
- cursor: hasDescription ? "pointer" : "auto",
- };
-
const handleNodeOpening = (event) => {
event.stopPropagation();
setPopupNode(node);
};
return (
-
+
diff --git a/src/css/custom.css b/src/css/custom.css
index 95ac130fa..268e08001 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -326,7 +326,8 @@ ul.yaml-list-elem > li:before {
color: var(--config-node-highlight-text-color);
}
-.config-explorer-popup-window-container { /* Container */
+.config-explorer-popup-window-container {
+ /* Container */
position: absolute;
margin-left: 30px;
transform: translateZ(0);
@@ -336,7 +337,8 @@ ul.yaml-list-elem > li:before {
z-index: 10;
}
-.config-explorer-popup-window { /* Inner */
+.config-explorer-popup-window {
+ /* Inner */
background-color: #1c1e21;
padding: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
@@ -346,11 +348,27 @@ ul.yaml-list-elem > li:before {
z-index: 20;
}
-.config-explorer-popup-window-open-tag { /* (i) tag */
- z-index: 15; /* Between container and popup window */
+.config-explorer-popup-window-open-tag {
+ /* (i) tag */
+ z-index: 5;
}
.config-explorer-popup-window-open-tag:hover {
font-weight: bold;
cursor: pointer;
}
+
+.config-explorer-node-icon {
+ font-size: 20px;
+}
+
+.config-explorer-node {
+ align-items: center;
+ position: relative;
+ display: flex;
+}
+
+.config-explorer-node-noflex {
+ align-items: center;
+ position: relative;
+}
From b519ce2d91a5c82a81e4f6c4428e7c5dc726ee5e Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Thu, 22 Feb 2024 00:32:32 +0000
Subject: [PATCH 08/16] CSS Changes
---
src/css/custom.css | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/css/custom.css b/src/css/custom.css
index 268e08001..4bc05ce3c 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -297,7 +297,8 @@ ul.yaml-list-elem > li:before {
}
.config-explorer-code-outer-container {
- overflow: visible;
+ overflow-x: auto;
+ white-space: nowrap;
}
.config-explorer-file-node {
@@ -305,6 +306,8 @@ ul.yaml-list-elem > li:before {
align-items: center;
border-radius: 10px;
width: fit-content;
+ flex-shrink: 0;
+ white-space: nowrap;
}
.config-explorer-file-node-with-link:hover {
@@ -335,6 +338,7 @@ ul.yaml-list-elem > li:before {
left: 0;
width: fit-content;
z-index: 10;
+ white-space: normal;
}
.config-explorer-popup-window {
@@ -346,6 +350,7 @@ ul.yaml-list-elem > li:before {
margin-right: 100px;
width: fit-content;
z-index: 20;
+ white-space: pre-wrap;
}
.config-explorer-popup-window-open-tag {
@@ -366,6 +371,8 @@ ul.yaml-list-elem > li:before {
align-items: center;
position: relative;
display: flex;
+ flex-shrink: 0;
+ white-space: nowrap;
}
.config-explorer-node-noflex {
From 48a8dd5f6e4d9eca192b094d1b9e711ea8890b0b Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Fri, 23 Feb 2024 20:12:10 +0000
Subject: [PATCH 09/16] Some Work
---
.../ConfigurationStructureDiagram.tsx | 49 +++++-----
src/css/configuration-explorer-layout.css | 89 +++++++++++++++++++
src/css/custom.css | 84 -----------------
3 files changed, 114 insertions(+), 108 deletions(-)
create mode 100644 src/css/configuration-explorer-layout.css
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index 8436c2d24..82a82f937 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -1,12 +1,21 @@
import React, {useState} from "react";
+import "@site/src/css/configuration-explorer-layout.css";
+
+interface ExplorerNode {
+ name: string;
+ type: "folder" | "file";
+ children?: ExplorerNode[];
+ description?: string;
+ url?: string;
+}
-const folderData = [
+const folderData: ExplorerNode[] = [
{
name: "config",
type: "folder",
children: [
- { name: "paper-global.yml", url: "/paper/reference/global-configuration" },
- { name: "paper-world-defaults.yml", url: "/paper/reference/world-configuration" },
+ { name: "paper-global.yml", type: "file", url: "/paper/reference/global-configuration" },
+ { name: "paper-world-defaults.yml", type: "file", url: "/paper/reference/world-configuration" },
],
},
{
@@ -18,7 +27,7 @@ const folderData = [
name: "
",
type: "folder",
children: [
- { name: "paper-world.yml", url: "/paper/reference/configuration#per-world-values" },
+ { name: "paper-world.yml", type: "file", url: "/paper/reference/configuration#per-world-values" },
],
},
{ name: "banned-ips.json", type: "file", description: "This file stores all the banned IP addresses on the server." },
@@ -35,45 +44,37 @@ const folderData = [
{ name: "whitelist.json", type: "file", description: "This is is a server configuration file that stores the usernames of players who have been whitelisted on a server." },
];
-const IndentationArrow = ({ level }) => {
+interface IndentationArrowProps {
+ level: number;
+}
+const IndentationArrow: React.FC = ({ level }) => {
if (level === 0) {
return null;
}
- const arrowStyle = {
- fontSize: "14px",
- color: "#bbbbbb",
- marginRight: "8px",
- marginLeft: `8px`,
- };
-
return (
-
- {level > 0 && "→".repeat(level)}
-
+
+ {level > 0 && "→".repeat(level)}
+
);
};
export default function ConfigurationStructureDiagram({}) {
- const [popupNode, setPopupNode] = useState(null);
-
- const closePopup = () => {
- setPopupNode(null);
- };
+ const [popupNode, setPopupNode] = useState(null);
- const renderNode = (node, level = 0) => {
+ const renderNode = (node: ExplorerNode, level: number = 0) => {
const isFolder = node.type === "folder";
const hasDescription = "description" in node;
const hasUrl = "url" in node;
- const handleNodeOpening = (event) => {
+ const handleNodeOpening = (event: React.MouseEvent) => {
event.stopPropagation();
setPopupNode(node);
};
return (
- 0 ? "config-explorer-node" : "config-explorer-node-noflex"} onMouseLeave={closePopup}>
+
0 ? "config-explorer-node" : "config-explorer-node-noflex"} onMouseLeave={() => {setPopupNode(null)}}>
{level > 0 && (
@@ -112,7 +113,7 @@ export default function ConfigurationStructureDiagram({}) {
return (
- {folderData.map(item => renderNode(item))}
+ {folderData.map((item) => renderNode(item))}
);
diff --git a/src/css/configuration-explorer-layout.css b/src/css/configuration-explorer-layout.css
new file mode 100644
index 000000000..2edccb5b7
--- /dev/null
+++ b/src/css/configuration-explorer-layout.css
@@ -0,0 +1,89 @@
+.config-explorer-code-outer-container {
+ overflow-x: auto;
+ white-space: nowrap;
+}
+
+.config-explorer-file-node {
+ display: flex;
+ align-items: center;
+ border-radius: 10px;
+ width: fit-content;
+ flex-shrink: 0;
+ white-space: nowrap;
+}
+
+.config-explorer-file-node-with-link:hover {
+ background-color: rgba(0, 0, 0, 0.1);
+ cursor: pointer;
+ text-decoration: none;
+}
+
+.config-explorer-file-folder-node {
+ display: flex;
+ align-items: center;
+ width: fit-content;
+ color: var(--config-node-highlight-text-color);
+}
+
+.config-explorer-file-folder-node:hover {
+ cursor: default;
+ text-decoration: none;
+ color: var(--config-node-highlight-text-color);
+}
+
+.config-explorer-popup-window-container {
+ /* Container */
+ position: absolute;
+ margin-left: 30px;
+ transform: translateZ(0);
+ top: 100%;
+ left: 0;
+ width: fit-content;
+ z-index: 10;
+ white-space: normal;
+}
+
+.config-explorer-popup-window {
+ /* Inner */
+ background-color: #1c1e21;
+ padding: 10px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ border-radius: 5px;
+ margin-right: 100px;
+ width: fit-content;
+ z-index: 20;
+ white-space: pre-wrap;
+}
+
+.config-explorer-popup-window-open-tag {
+ /* (i) tag */
+ z-index: 5;
+}
+
+.config-explorer-popup-window-open-tag:hover {
+ font-weight: bold;
+ cursor: pointer;
+}
+
+.indentation-arrow {
+ font-size: 14px;
+ color: #bbbbbb;
+ margin: 0 8px 0 8px;
+}
+
+.config-explorer-node-icon {
+ font-size: 20px;
+}
+
+.config-explorer-node {
+ align-items: center;
+ position: relative;
+ display: flex;
+ flex-shrink: 0;
+ white-space: nowrap;
+}
+
+.config-explorer-node-noflex {
+ align-items: center;
+ position: relative;
+}
diff --git a/src/css/custom.css b/src/css/custom.css
index 4bc05ce3c..de3f84573 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -295,87 +295,3 @@ ul.yaml-list-elem > li:before {
[data-theme="light"] .expand-list-text {
color: rgb(148, 148, 148);
}
-
-.config-explorer-code-outer-container {
- overflow-x: auto;
- white-space: nowrap;
-}
-
-.config-explorer-file-node {
- display: flex;
- align-items: center;
- border-radius: 10px;
- width: fit-content;
- flex-shrink: 0;
- white-space: nowrap;
-}
-
-.config-explorer-file-node-with-link:hover {
- background-color: rgba(0, 0, 0, 0.1);
- cursor: pointer;
- text-decoration: none;
-}
-
-.config-explorer-file-folder-node {
- display: flex;
- align-items: center;
- width: fit-content;
- color: var(--config-node-highlight-text-color);
-}
-
-.config-explorer-file-folder-node:hover {
- cursor: default;
- text-decoration: none;
- color: var(--config-node-highlight-text-color);
-}
-
-.config-explorer-popup-window-container {
- /* Container */
- position: absolute;
- margin-left: 30px;
- transform: translateZ(0);
- top: 100%;
- left: 0;
- width: fit-content;
- z-index: 10;
- white-space: normal;
-}
-
-.config-explorer-popup-window {
- /* Inner */
- background-color: #1c1e21;
- padding: 10px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- border-radius: 5px;
- margin-right: 100px;
- width: fit-content;
- z-index: 20;
- white-space: pre-wrap;
-}
-
-.config-explorer-popup-window-open-tag {
- /* (i) tag */
- z-index: 5;
-}
-
-.config-explorer-popup-window-open-tag:hover {
- font-weight: bold;
- cursor: pointer;
-}
-
-.config-explorer-node-icon {
- font-size: 20px;
-}
-
-.config-explorer-node {
- align-items: center;
- position: relative;
- display: flex;
- flex-shrink: 0;
- white-space: nowrap;
-}
-
-.config-explorer-node-noflex {
- align-items: center;
- position: relative;
-}
From d602dd4f28ecf73aca04ee37fa7724e522815fff Mon Sep 17 00:00:00 2001
From: Ollie <69084614+olijeffers0n@users.noreply.github.com>
Date: Fri, 23 Feb 2024 20:20:54 +0000
Subject: [PATCH 10/16] Some Work
---
src/components/ConfigurationStructureDiagram.tsx | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/src/components/ConfigurationStructureDiagram.tsx b/src/components/ConfigurationStructureDiagram.tsx
index 82a82f937..23c245f27 100644
--- a/src/components/ConfigurationStructureDiagram.tsx
+++ b/src/components/ConfigurationStructureDiagram.tsx
@@ -21,7 +21,7 @@ const folderData: ExplorerNode[] = [
{
name: "plugins",
type: "folder",
- description: "Plugin jars go here.",
+ description: "You can place your plugin jars here.",
},
{
name: "
",
@@ -76,16 +76,20 @@ export default function ConfigurationStructureDiagram({}) {
return (