mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
update plugin list (#93259)
This commit is contained in:
parent
d30be3f100
commit
8bcec14727
2 changed files with 7 additions and 4 deletions
|
@ -29,6 +29,8 @@ as uiSettings within the code.
|
|||
|
||||
|
||||
|{kib-repo}blob/{branch}/src/plugins/apm_oss/README.asciidoc[apmOss]
|
||||
|undefined
|
||||
|
||||
|
||||
|{kib-repo}blob/{branch}/src/plugins/bfetch/README.md[bfetch]
|
||||
|bfetch allows to batch HTTP requests and streams responses back.
|
||||
|
|
|
@ -28,10 +28,11 @@ function* printPlugins(plugins: Plugins, includes: string[]) {
|
|||
yield `|{kib-repo}blob/{branch}/${path}[${plugin.id}]`;
|
||||
}
|
||||
|
||||
if (!plugin.relativeReadmePath || plugin.readmeSnippet) {
|
||||
yield plugin.readmeSnippet ? `|${plugin.readmeSnippet}` : '|WARNING: Missing README.';
|
||||
yield '';
|
||||
}
|
||||
yield plugin.relativeReadmePath === undefined
|
||||
? '|WARNING: Missing README.'
|
||||
: `|${plugin.readmeSnippet}`;
|
||||
|
||||
yield '';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue