This commit is contained in:
Wisani Shilumani 2018-07-16 17:13:29 +02:00
parent 92c93134d6
commit a04c511032
4 changed files with 1793 additions and 3135 deletions

View File

@ -7,7 +7,7 @@ import TopicsList from '../topicsList';
import ProjectsList from '../projectsList';
import SearchBar from '../searchBar';
import SearchResults from '../searchResults';
import { InterviewsData, Questions } from '../../data/archives/interviews-data';
import { InterviewsData, Questions } from '../../data/archives/interviews';
import './style.scss';
class BrowseArchives extends React.Component {

View File

@ -7,7 +7,7 @@ const SearchResults = (props) => {
if (!props.data || props.data[0] === null) {
return <div>Loading...</div>;
} else if (props.data.length < 1) {
return <div> No results found </div>;
return <div>No results found</div>;
}
// sort array alphabetically

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long