Skip to content
This repository was archived by the owner on May 2, 2022. It is now read-only.

Commit e3705ab

Browse files
authored
Fix minor UI details (#1571)
1 parent 9072297 commit e3705ab

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/components/pages/home/search-box.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class SearchBox extends React.Component {
128128
<input
129129
{...getInputProps({
130130
className: classes.input,
131-
placeholder: 'Search apps & spaces in catalog...',
131+
placeholder: 'Search apps in catalog...',
132132
// App Search API can only handle up to 128 chars
133133
maxLength: 128,
134134
ref: (inputBox) => { this.inputBox = inputBox; },

src/components/pages/spaces/dialog-add-space/home.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ import React, { useRef } from 'react';
55
import PropTypes from 'prop-types';
66

77
import AppSearchAPIConnector from '@elastic/search-ui-app-search-connector';
8-
import { SearchProvider, WithSearch, Paging } from '@elastic/react-search-ui';
8+
import { SearchProvider, WithSearch } from '@elastic/react-search-ui';
99
import '@elastic/react-search-ui-views/lib/styles/styles.css';
1010

11-
import Grid from '@material-ui/core/Grid';
1211
import Typography from '@material-ui/core/Typography';
1312

1413
import connectComponent from '../../../../helpers/connect-component';
@@ -182,11 +181,6 @@ const Home = ({ classes, installedAppIds }) => {
182181
icon128={app.icon_filled_128.raw}
183182
/>
184183
))}
185-
{results.length > 0 && (
186-
<Grid container justify="center">
187-
<Paging />
188-
</Grid>
189-
)}
190184
</>
191185
);
192186
}}

0 commit comments

Comments
 (0)