fix: typo/grammar mistake in includeExternalUrls config option

This commit is contained in:
WebStreamr 2025-06-24 19:59:30 +00:00
parent 9e2242093c
commit 412e89b690
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@ exports[`buildManifest has checked includeExternalUrls 1`] = `
{
"default": "checked",
"key": "includeExternalUrls",
"title": "Include external URLs from results",
"title": "Include external URLs in results",
"type": "checkbox",
},
{
@ -44,7 +44,7 @@ exports[`buildManifest has checked source with appropriate config 1`] = `
{
"default": "checked",
"key": "includeExternalUrls",
"title": "Include external URLs from results",
"title": "Include external URLs in results",
"type": "checkbox",
},
{
@ -81,7 +81,7 @@ exports[`buildManifest has unchecked source without a config 1`] = `
},
{
"key": "includeExternalUrls",
"title": "Include external URLs from results",
"title": "Include external URLs in results",
"type": "checkbox",
},
{
@ -103,7 +103,7 @@ exports[`buildManifest includeExternalUrls is unchecked by default 1`] = `
[
{
"key": "includeExternalUrls",
"title": "Include external URLs from results",
"title": "Include external URLs in results",
"type": "checkbox",
},
{

View file

@ -53,7 +53,7 @@ export const buildManifest = (sources: Source[], config: Config): ManifestWithCo
manifest.config.push({
key: 'includeExternalUrls',
type: 'checkbox',
title: 'Include external URLs from results',
title: 'Include external URLs in results',
...('includeExternalUrls' in config && { default: 'checked' }),
});