Merge branch 'master' into stack-overflow-api
This commit is contained in:
@@ -26,6 +26,8 @@ import {
|
||||
} from '@material-ui/core';
|
||||
import OpenInNewIcon from '@material-ui/icons/OpenInNew';
|
||||
import useAsync from 'react-use/lib/useAsync';
|
||||
import _unescape from 'lodash/unescape';
|
||||
import qs from 'qs';
|
||||
import React from 'react';
|
||||
import {
|
||||
StackOverflowQuestion,
|
||||
@@ -67,7 +69,7 @@ export const Content = (props: StackOverflowQuestionsContentProps) => {
|
||||
<ListItem key={question.link}>
|
||||
{props.icon && <ListItemIcon>{props.icon}</ListItemIcon>}
|
||||
<ListItemText
|
||||
primary={question.title}
|
||||
primary={_unescape(question.title)}
|
||||
secondary={getSecondaryText(question.answer_count)}
|
||||
/>
|
||||
<ListItemSecondaryAction>
|
||||
|
||||
Reference in New Issue
Block a user