mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Lens] suppress missing index toasts (#150345)
This commit is contained in:
parent
78947c4c6f
commit
ebc1bc5242
1 changed files with 3 additions and 1 deletions
|
@ -176,7 +176,9 @@ export async function loadIndexPatterns({
|
|||
}
|
||||
indexPatterns.push(
|
||||
...(await Promise.all(
|
||||
Object.values(adHocDataViews || {}).map((spec) => dataViews.create(spec))
|
||||
Object.values(adHocDataViews || {}).map((spec) =>
|
||||
dataViews.create({ ...spec, allowNoIndex: true })
|
||||
)
|
||||
))
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue