mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
## Summary
3598bfb7
-83fc-4eb0-b185-20d689442a68
### Notes
1. ~~Storing the dashboard name in the saved object may become outdated
and cause confusion, as users have the ability to update the dashboard
title on the dashboard page.
[**UPDATED**] Fetch dynamically from the dashboard module api
3. UI we don't have an indicator useContextFilter
## TODO
- [x] API tests
- [x] Dynamic title
- [x] Deep-link for dashboard
- [x] Fetch services that match the dashboard kuery
---------
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
14 lines
733 B
TypeScript
14 lines
733 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import noResultsIllustrationDark from './src/assets/no_results_dark.svg';
|
|
import noResultsIllustrationLight from './src/assets/no_results_light.svg';
|
|
import dashboardsLight from './src/assets/dashboards_light.svg';
|
|
import dashboardsDark from './src/assets/dashboards_dark.svg';
|
|
|
|
export { noResultsIllustrationDark, noResultsIllustrationLight, dashboardsLight, dashboardsDark };
|