mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
parent
4721088475
commit
22157b85d2
1 changed files with 5 additions and 6 deletions
|
@ -6,16 +6,15 @@ import {
|
|||
|
||||
import {
|
||||
EuiConfirmModal,
|
||||
EuiIcon,
|
||||
} from '@elastic/eui';
|
||||
|
||||
import { uiModules } from 'ui/modules';
|
||||
|
||||
const app = uiModules.get('app/kibana', ['react']);
|
||||
|
||||
app.directive('toolBarSearchBox', function (reactDirective) {
|
||||
return reactDirective(KuiToolBarSearchBox);
|
||||
});
|
||||
app.directive('toolBarSearchBox', reactDirective => reactDirective(KuiToolBarSearchBox));
|
||||
|
||||
app.directive('confirmModal', function (reactDirective) {
|
||||
return reactDirective(EuiConfirmModal);
|
||||
});
|
||||
app.directive('confirmModal', reactDirective => reactDirective(EuiConfirmModal));
|
||||
|
||||
app.directive('icon', reactDirective => reactDirective(EuiIcon));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue