From ff2071fb2eb77aa74646b7f300f793fd817ad93b Mon Sep 17 00:00:00 2001 From: FilipZajdel Date: Mon, 20 Jan 2025 16:03:56 +0100 Subject: [PATCH] Correct wording --- resources/schema.json | 4 ++-- site/src/app/AppBlock.tsx | 2 +- site/src/schema.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/schema.json b/resources/schema.json index e9350f6..a019d97 100644 --- a/resources/schema.json +++ b/resources/schema.json @@ -119,11 +119,11 @@ }, "docsUrl": { "type": "string", - "description": "The url of the addon's documentation" + "description": "The URL of the add-on's documentation" }, "restricted": { "type": "boolean", - "description": "Mark the restricted access to any of dependencies.", + "description": "Mark the restricted access to any of the dependencies.", "default": false } }, diff --git a/site/src/app/AppBlock.tsx b/site/src/app/AppBlock.tsx index 59e9594..0a66e80 100644 --- a/site/src/app/AppBlock.tsx +++ b/site/src/app/AppBlock.tsx @@ -61,7 +61,7 @@ function AppBlock({ app, setShowingAppDetails }: Props): JSX.Element { {app.restricted && -
+
} diff --git a/site/src/schema.ts b/site/src/schema.ts index e37ae22..3a8ffa2 100644 --- a/site/src/schema.ts +++ b/site/src/schema.ts @@ -122,11 +122,11 @@ export const appMetadataSchema = { }, docsUrl: { type: 'string', - description: `The url of the addon's documentation` + description: `The URL of the add-on's documentation` }, restricted: { type: 'boolean', - description: 'Mark the restricted access to any of dependencies.', + description: 'Mark the restricted access to any of the dependencies.', default: false } },