Skip to content

Commit

Permalink
fix: change copy from "subjects" to "topics"
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiMeganMoore committed Oct 20, 2022
1 parent a1bcf95 commit ef9a4b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Binary file modified example/package/react-autoql-0.0.0-semantically-released.tgz
Binary file not shown.
4 changes: 1 addition & 3 deletions src/components/DataExplorer/DataExplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ export default class DataExplorer extends React.Component {
<p>{this.props.introMessage}</p>
) : (
<div>
<p>
Explore your data and discover what you can ask AutoQL. Simply enter a topic in the search bar above and:
</p>
<p>Explore your data and discover what you can ask AutoQL. Simply enter a term or topic above and:</p>
<div className='intro-message-list-container'>
<div>
<p>
Expand Down
4 changes: 2 additions & 2 deletions src/components/DataExplorer/DataExplorerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class DataExplorerInput extends React.Component {

static defaultProps = {
authentication: {},
inputPlaceholder: 'Search subjects',
inputPlaceholder: 'Search terms or topics',
onClearInputClick: () => {},
onSelection: () => {},
}
Expand Down Expand Up @@ -317,7 +317,7 @@ export default class DataExplorerInput extends React.Component {
// Suggestion list
if (inputIsEmpty) {
sections.push({
title: 'All Subjects',
title: 'All Topics',
suggestions: this.state.allSubjects,
})
} else if (hasSuggestions) {
Expand Down

0 comments on commit ef9a4b8

Please sign in to comment.