mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
parent
2af2b60b00
commit
8d851981ac
3 changed files with 11 additions and 1 deletions
|
@ -11,6 +11,7 @@ exports[`after fetch hideWriteControls 1`] = `
|
|||
findItems={[Function]}
|
||||
headingId="dashboardListingHeading"
|
||||
initialFilter=""
|
||||
initialPageSize={10}
|
||||
listingLimit={1}
|
||||
noItemsFragment={
|
||||
<div>
|
||||
|
@ -68,6 +69,7 @@ exports[`after fetch initialFilter 1`] = `
|
|||
findItems={[Function]}
|
||||
headingId="dashboardListingHeading"
|
||||
initialFilter="my dashboard"
|
||||
initialPageSize={10}
|
||||
listingLimit={1000}
|
||||
noItemsFragment={
|
||||
<div>
|
||||
|
@ -169,6 +171,7 @@ exports[`after fetch renders call to action when no dashboards exist 1`] = `
|
|||
findItems={[Function]}
|
||||
headingId="dashboardListingHeading"
|
||||
initialFilter=""
|
||||
initialPageSize={10}
|
||||
listingLimit={1}
|
||||
noItemsFragment={
|
||||
<div>
|
||||
|
@ -270,6 +273,7 @@ exports[`after fetch renders table rows 1`] = `
|
|||
findItems={[Function]}
|
||||
headingId="dashboardListingHeading"
|
||||
initialFilter=""
|
||||
initialPageSize={10}
|
||||
listingLimit={1000}
|
||||
noItemsFragment={
|
||||
<div>
|
||||
|
@ -371,6 +375,7 @@ exports[`after fetch renders warning when listingLimit is exceeded 1`] = `
|
|||
findItems={[Function]}
|
||||
headingId="dashboardListingHeading"
|
||||
initialFilter=""
|
||||
initialPageSize={10}
|
||||
listingLimit={1}
|
||||
noItemsFragment={
|
||||
<div>
|
||||
|
|
|
@ -115,7 +115,7 @@ export class DashboardListing extends React.Component {
|
|||
sampleDataInstallLink: (
|
||||
<EuiLink
|
||||
onClick={() =>
|
||||
this.props.core.application.navigateTo('home', {
|
||||
this.props.core.application.navigateToApp('home', {
|
||||
path: '#/tutorial_directory/sampleData',
|
||||
})
|
||||
}
|
||||
|
|
|
@ -79,6 +79,7 @@ describe('after fetch', () => {
|
|||
getViewUrl={() => {}}
|
||||
listingLimit={1000}
|
||||
hideWriteControls={false}
|
||||
initialPageSize={10}
|
||||
initialFilter="my dashboard"
|
||||
core={{ notifications: { toasts: {} }, uiSettings: { get: jest.fn(() => 10) } }}
|
||||
/>
|
||||
|
@ -101,6 +102,7 @@ describe('after fetch', () => {
|
|||
editItem={() => {}}
|
||||
getViewUrl={() => {}}
|
||||
listingLimit={1000}
|
||||
initialPageSize={10}
|
||||
hideWriteControls={false}
|
||||
core={{ notifications: { toasts: {} }, uiSettings: { get: jest.fn(() => 10) } }}
|
||||
/>
|
||||
|
@ -123,6 +125,7 @@ describe('after fetch', () => {
|
|||
editItem={() => {}}
|
||||
getViewUrl={() => {}}
|
||||
listingLimit={1}
|
||||
initialPageSize={10}
|
||||
hideWriteControls={false}
|
||||
core={{ notifications: { toasts: {} }, uiSettings: { get: jest.fn(() => 10) } }}
|
||||
/>
|
||||
|
@ -145,6 +148,7 @@ describe('after fetch', () => {
|
|||
editItem={() => {}}
|
||||
getViewUrl={() => {}}
|
||||
listingLimit={1}
|
||||
initialPageSize={10}
|
||||
hideWriteControls={true}
|
||||
core={{ notifications: { toasts: {} }, uiSettings: { get: jest.fn(() => 10) } }}
|
||||
/>
|
||||
|
@ -167,6 +171,7 @@ describe('after fetch', () => {
|
|||
editItem={() => {}}
|
||||
getViewUrl={() => {}}
|
||||
listingLimit={1}
|
||||
initialPageSize={10}
|
||||
hideWriteControls={false}
|
||||
core={{ notifications: { toasts: {} }, uiSettings: { get: jest.fn(() => 10) } }}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue