Skip to content

Commit

Permalink
Correct wording
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipZajdel committed Jan 20, 2025
1 parent 790af0f commit ff2071f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions resources/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
},
Expand Down
2 changes: 1 addition & 1 deletion site/src/app/AppBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function AppBlock({ app, setShowingAppDetails }: Props): JSX.Element {
<LinkExternalIcon className="hoverable-icon" size={20} />
</a>
{app.restricted &&
<div title="This addon requires additional permissions.">
<div title="This add-on requires additional permissions.">
<LockIcon className="hoverable-icon" size={20}/>
</div>
}
Expand Down
4 changes: 2 additions & 2 deletions site/src/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
},
Expand Down

0 comments on commit ff2071f

Please sign in to comment.