fix: typo/grammar mistake in includeExternalUrls config option
This commit is contained in:
parent
9e2242093c
commit
412e89b690
2 changed files with 5 additions and 5 deletions
|
|
@ -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",
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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' }),
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue