diff --git a/frontend/app/components/Errors/List/List.js b/frontend/app/components/Errors/List/List.js
index 9f379319a..8a22a1f2d 100644
--- a/frontend/app/components/Errors/List/List.js
+++ b/frontend/app/components/Errors/List/List.js
@@ -25,7 +25,7 @@ const sortOptions = Object.entries(sortOptionsMap)
@connect(state => ({
loading: state.getIn([ "errors", "loading" ]),
- resolveToggleLoading: state.getIn(["errors", "resolve", "loading"]) ||
+ resolveToggleLoading: state.getIn(["errors", "resolve", "loading"]) ||
state.getIn(["errors", "unresolve", "loading"]),
ignoreLoading: state.getIn([ "errors", "ignore", "loading" ]),
mergeLoading: state.getIn([ "errors", "merge", "loading" ]),
@@ -54,19 +54,19 @@ export default class List extends React.PureComponent {
}
this.debounceFetch = debounce(this.props.editOptions, 1000);
}
-
+
componentDidMount() {
this.props.applyFilter({ });
}
check = ({ errorId }) => {
const { checkedIds } = this.state;
- const newCheckedIds = checkedIds.contains(errorId)
- ? checkedIds.remove(errorId)
+ const newCheckedIds = checkedIds.contains(errorId)
+ ? checkedIds.remove(errorId)
: checkedIds.add(errorId);
this.setState({
checkedAll: newCheckedIds.size === this.props.list.size,
- checkedIds: newCheckedIds
+ checkedIds: newCheckedIds
});
}
@@ -184,7 +184,7 @@ export default class List extends React.PureComponent {
onClick={ this.unresolve }
disabled={ someLoading || currentCheckedIds.size === 0}
/>
- }
+ }
{ status !== IGNORED &&
- }
+ }
-
Sort By
+
Sort By
- {canExpand && expanded && lines.map((l: any, i: number) => {l}
)}
+ {/* {canExpand && expanded && lines.map((l: any, i: number) => {l}
)} */}
jump(log.time)} />
diff --git a/frontend/app/components/Session_/Exceptions/Exceptions.tsx b/frontend/app/components/Session_/Exceptions/Exceptions.tsx
index e263c9106..987d0f215 100644
--- a/frontend/app/components/Session_/Exceptions/Exceptions.tsx
+++ b/frontend/app/components/Session_/Exceptions/Exceptions.tsx
@@ -81,7 +81,6 @@ function Exceptions({ errorStack, sourcemapUploaded, loading }: IProps) {
className="input-small"
placeholder="Filter by name or message"
icon="search"
- iconPosition="left"
name="filter"
onChange={onFilterChange}
height={28}
diff --git a/frontend/app/components/Session_/GraphQL/GraphQL.js b/frontend/app/components/Session_/GraphQL/GraphQL.js
index 8c601dba1..323e3c4d4 100644
--- a/frontend/app/components/Session_/GraphQL/GraphQL.js
+++ b/frontend/app/components/Session_/GraphQL/GraphQL.js
@@ -132,7 +132,6 @@ export default class GraphQL extends React.PureComponent {
// className="input-small"
placeholder="Filter by name or type"
icon="search"
- iconPosition="left"
name="filter"
onChange={this.onFilterChange}
/>
diff --git a/frontend/app/components/Session_/Network/NetworkContent.js b/frontend/app/components/Session_/Network/NetworkContent.js
index 464b22f5e..2891a0597 100644
--- a/frontend/app/components/Session_/Network/NetworkContent.js
+++ b/frontend/app/components/Session_/Network/NetworkContent.js
@@ -230,7 +230,6 @@ export default class NetworkContent extends React.PureComponent {
className="input-small"
placeholder="Filter by name"
icon="search"
- iconPosition="left"
name="filter"
onChange={this.onFilterChange}
height={28}
diff --git a/frontend/app/components/shared/DevTools/ConsolePanel/ConsolePanel.tsx b/frontend/app/components/shared/DevTools/ConsolePanel/ConsolePanel.tsx
index 44b9f3d00..32e143432 100644
--- a/frontend/app/components/shared/DevTools/ConsolePanel/ConsolePanel.tsx
+++ b/frontend/app/components/shared/DevTools/ConsolePanel/ConsolePanel.tsx
@@ -31,7 +31,7 @@ let throttledCall = () => 999
function renderWithNL(s = '') {
if (typeof s !== 'string') return '';
- return s.split('\n').map((line, i) => {line}
);
+ return s.split('\n').map((line, i) => {line}
);
}
const getIconProps = (level: any) => {
@@ -129,23 +129,25 @@ function ConsolePanel() {
const item = filteredList[index];
return (
- // @ts-ignore
-
- {({ measure }: any) => (
- showDetails(item)}
- recalcHeight={() => {
- measure();
- (_list as any).current.recomputeRowHeights(index);
- }}
- />
- )}
-
+
+ {/* @ts-ignore */}
+
+ {({ measure }: any) => (
+ showDetails(item)}
+ recalcHeight={() => {
+ measure();
+ (_list as any).current.recomputeRowHeights(index);
+ }}
+ />
+ )}
+
+
);
};
@@ -205,7 +207,6 @@ function ConsolePanel() {
className="input-small h-8"
placeholder="Filter by keyword"
icon="search"
- iconPosition="left"
name="filter"
height={28}
onChange={onFilterChange}
diff --git a/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx b/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx
index 777771de9..0aa9b801f 100644
--- a/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx
+++ b/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx
@@ -49,13 +49,13 @@ function ConsoleRow(props: Props) {
)}
{renderWithNL(lines.pop())}
- {canExpand &&
+ {/* {canExpand &&
expanded &&
lines.map((l: string, i: number) => (
{l}
- ))}
+ ))} */}
jump(log.time)} />
diff --git a/frontend/app/components/shared/DevTools/NetworkPanel/NetworkPanel.tsx b/frontend/app/components/shared/DevTools/NetworkPanel/NetworkPanel.tsx
index 5301066cb..206ef1a6a 100644
--- a/frontend/app/components/shared/DevTools/NetworkPanel/NetworkPanel.tsx
+++ b/frontend/app/components/shared/DevTools/NetworkPanel/NetworkPanel.tsx
@@ -310,7 +310,6 @@ function NetworkPanel() {
className="input-small"
placeholder="Filter by name, type or value"
icon="search"
- iconPosition="left"
name="filter"
onChange={onFilterChange}
height={28}
diff --git a/frontend/app/components/shared/DevTools/StackEventPanel/StackEventPanel.tsx b/frontend/app/components/shared/DevTools/StackEventPanel/StackEventPanel.tsx
index 557c72172..d1f3e9d16 100644
--- a/frontend/app/components/shared/DevTools/StackEventPanel/StackEventPanel.tsx
+++ b/frontend/app/components/shared/DevTools/StackEventPanel/StackEventPanel.tsx
@@ -149,7 +149,6 @@ function StackEventPanel(props: Props) {
className="input-small h-8"
placeholder="Filter by keyword"
icon="search"
- iconPosition="left"
name="filter"
height={28}
onChange={onFilterChange}
diff --git a/frontend/app/components/shared/LiveSessionSearchField/LiveSessionSearchField.tsx b/frontend/app/components/shared/LiveSessionSearchField/LiveSessionSearchField.tsx
index f9ea8d51c..08dd17866 100644
--- a/frontend/app/components/shared/LiveSessionSearchField/LiveSessionSearchField.tsx
+++ b/frontend/app/components/shared/LiveSessionSearchField/LiveSessionSearchField.tsx
@@ -35,7 +35,6 @@ function LiveSessionSearchField(props: Props) {
onBlur={ () => setTimeout(setShowModal, 200, false) }
onChange={ onSearchChange }
icon="search"
- iconPosition="left"
placeholder={ 'Find live sessions by user or metadata.'}
fluid
id="search"
@@ -56,4 +55,4 @@ function LiveSessionSearchField(props: Props) {
);
}
-export default connect(null, { fetchFilterSearch, editFilter, addFilterByKeyAndValue })(LiveSessionSearchField);
\ No newline at end of file
+export default connect(null, { fetchFilterSearch, editFilter, addFilterByKeyAndValue })(LiveSessionSearchField);