This repository was archived by the owner on May 2, 2022. It is now read-only.
File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class SearchBox extends React.Component {
128
128
< input
129
129
{ ...getInputProps ( {
130
130
className : classes . input ,
131
- placeholder : 'Search apps & spaces in catalog...' ,
131
+ placeholder : 'Search apps in catalog...' ,
132
132
// App Search API can only handle up to 128 chars
133
133
maxLength : 128 ,
134
134
ref : ( inputBox ) => { this . inputBox = inputBox ; } ,
Original file line number Diff line number Diff line change @@ -5,10 +5,9 @@ import React, { useRef } from 'react';
5
5
import PropTypes from 'prop-types' ;
6
6
7
7
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' ;
9
9
import '@elastic/react-search-ui-views/lib/styles/styles.css' ;
10
10
11
- import Grid from '@material-ui/core/Grid' ;
12
11
import Typography from '@material-ui/core/Typography' ;
13
12
14
13
import connectComponent from '../../../../helpers/connect-component' ;
@@ -182,11 +181,6 @@ const Home = ({ classes, installedAppIds }) => {
182
181
icon128 = { app . icon_filled_128 . raw }
183
182
/>
184
183
) ) }
185
- { results . length > 0 && (
186
- < Grid container justify = "center" >
187
- < Paging />
188
- </ Grid >
189
- ) }
190
184
</ >
191
185
) ;
192
186
} }
You can’t perform that action at this time.
0 commit comments