mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Lens] [ES|QL] Fixes inline documentation in cloud (#177774)
## Summary In the cloud distribution the documentation popovers are not rendered correctly (ES|QL and Lens) This is because the documentation.scss file is not loaded. This happens due to the sideEffects option. This is happening only on production mode and not on dev mode. You can use this a la carte instance for testing or create your own https://stratoula-pr-177774-fix-documentation-in-cloud.kbndev.co/ ### How to test Open the ES|QL inline documentation or the Lens formula inline documentation,
This commit is contained in:
parent
7dd0c2bc73
commit
b4019a2e5c
1 changed files with 3 additions and 1 deletions
|
@ -3,5 +3,7 @@
|
|||
"version": "1.0.0",
|
||||
"license": "SSPL-1.0 OR Elastic License 2.0",
|
||||
"private": true,
|
||||
"sideEffects": false
|
||||
"sideEffects": [
|
||||
"*.scss"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue