Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kertal committed Feb 5, 2020
1 parent 7e20c19 commit 0be548a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { KbnUrlProvider } from '../url';
import template from './error_url_overflow.html';
import { UrlOverflowService } from '../../../../plugins/kibana_legacy/public';

export * from '../../../../plugins/kibana_legacy/public/utils/url_overflow_service';
export { UrlOverflowService };

uiRoutes.when('/error/url-overflow', {
template,
Expand Down
10 changes: 5 additions & 5 deletions src/legacy/ui/public/notify/banners/BANNERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ Banner objects are sorted in descending order based on their `priority`, in the

```js
{
'banner-123',
component;: <EuiCallOut />,
priority;: 12,
id: 'banner-123',
component: <EuiCallOut />,
priority: 12,
}
```

Expand Down Expand Up @@ -339,8 +339,8 @@ banners.add({
title="Look at me!"
/>
),
data-test-subj;: 'my-tested-banner',
})
data-test-subj: 'my-tested-banner',
});
```

This will apply the `data-test-subj` to the element containing the `component`, so the inner HTML of that element
Expand Down

0 comments on commit 0be548a

Please sign in to comment.