Skip to content

Commit

Permalink
Change saved objects management screen loading icons
Browse files Browse the repository at this point in the history
Kibana logo was used in a few places, changed it to Elastic logo.
  • Loading branch information
jportner committed Aug 26, 2020
1 parent a8891c4 commit a55065b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
EuiSelect,
EuiFlexGroup,
EuiFlexItem,
EuiLoadingKibana,
EuiLoadingElastic,
EuiCallOut,
EuiSpacer,
EuiLink,
Expand Down Expand Up @@ -602,7 +602,7 @@ export class Flyout extends Component<FlyoutProps, FlyoutState> {
return (
<EuiFlexGroup justifyContent="spaceAround">
<EuiFlexItem grow={false}>
<EuiLoadingKibana size="xl" />
<EuiLoadingElastic size="xl" />
<EuiSpacer size="m" />
<EuiText>
<p>{loadingMessage}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ describe('Relationships', () => {
const component = shallowWithI18nProvider(<Relationships {...props} />);

// Make sure we are showing loading
expect(component.find('EuiLoadingKibana').length).toBe(1);
expect(component.find('EuiLoadingElastic').length).toBe(1);

// Ensure all promises resolve
await new Promise((resolve) => process.nextTick(resolve));
Expand Down Expand Up @@ -154,7 +154,7 @@ describe('Relationships', () => {
const component = shallowWithI18nProvider(<Relationships {...props} />);

// Make sure we are showing loading
expect(component.find('EuiLoadingKibana').length).toBe(1);
expect(component.find('EuiLoadingElastic').length).toBe(1);

// Ensure all promises resolve
await new Promise((resolve) => process.nextTick(resolve));
Expand Down Expand Up @@ -221,7 +221,7 @@ describe('Relationships', () => {
const component = shallowWithI18nProvider(<Relationships {...props} />);

// Make sure we are showing loading
expect(component.find('EuiLoadingKibana').length).toBe(1);
expect(component.find('EuiLoadingElastic').length).toBe(1);

// Ensure all promises resolve
await new Promise((resolve) => process.nextTick(resolve));
Expand Down Expand Up @@ -288,7 +288,7 @@ describe('Relationships', () => {
const component = shallowWithI18nProvider(<Relationships {...props} />);

// Make sure we are showing loading
expect(component.find('EuiLoadingKibana').length).toBe(1);
expect(component.find('EuiLoadingElastic').length).toBe(1);

// Ensure all promises resolve
await new Promise((resolve) => process.nextTick(resolve));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
EuiLink,
EuiIcon,
EuiCallOut,
EuiLoadingKibana,
EuiLoadingElastic,
EuiInMemoryTable,
EuiToolTip,
EuiText,
Expand Down Expand Up @@ -119,7 +119,7 @@ export class Relationships extends Component<RelationshipsProps, RelationshipsSt
}

if (isLoading) {
return <EuiLoadingKibana size="xl" />;
return <EuiLoadingElastic size="xl" />;
}

const columns = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
EuiInMemoryTable,
EuiIcon,
EuiConfirmModal,
EuiLoadingKibana,
EuiLoadingElastic,
EuiOverlayMask,
EUI_MODAL_CONFIRM_BUTTON,
EuiCheckboxGroup,
Expand Down Expand Up @@ -545,7 +545,7 @@ export class SavedObjectsTable extends Component<SavedObjectsTableProps, SavedOb

if (isDeleting) {
// Block the user from interacting with the table while its contents are being deleted.
modal = <EuiLoadingKibana size="xl" />;
modal = <EuiLoadingElastic size="xl" />;
} else {
const onCancel = () => {
this.setState({ isShowingDeleteConfirmModal: false });
Expand Down

0 comments on commit a55065b

Please sign in to comment.