|
@@ -9,6 +9,7 @@ import {t} from 'sentry/locale';
|
|
|
import space from 'sentry/styles/space';
|
|
|
import {Tag, TagCollection} from 'sentry/types';
|
|
|
import {objToQuery, QueryObj, queryToObj} from 'sentry/utils/stream';
|
|
|
+import Input from 'sentry/views/settings/components/forms/controls/input';
|
|
|
|
|
|
import IssueListTagFilter from './tagFilter';
|
|
|
import {TagValueLoader} from './types';
|
|
@@ -116,8 +117,7 @@ class IssueListSidebar extends React.Component<Props, State> {
|
|
|
<StreamTagFilter>
|
|
|
<StyledHeader>{t('Text')}</StyledHeader>
|
|
|
<form onSubmit={this.onTextFilterSubmit}>
|
|
|
- <input
|
|
|
- className="form-control"
|
|
|
+ <Input
|
|
|
placeholder={t('Search title and culprit text body')}
|
|
|
onChange={this.onTextChange}
|
|
|
value={this.state.textFilter}
|
|
@@ -176,4 +176,5 @@ const StreamTagFilter = styled('div')`
|
|
|
|
|
|
const StyledHr = styled('hr')`
|
|
|
margin: ${space(2)} 0 0;
|
|
|
+ border-top: solid 1px ${p => p.theme.innerBorder};
|
|
|
`;
|