We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<ProjectDebugFiles>
1 parent 6de423d commit ef522f1Copy full SHA for ef522f1
src/sentry/static/sentry/app/views/settings/projectDebugFiles/index.tsx
@@ -55,7 +55,7 @@ class ProjectDebugSymbols extends AsyncView<Props, State> {
55
return endpoints;
56
}
57
58
- onDelete(id: string) {
+ handleDelete = (id: string) => {
59
const {orgId, projectId} = this.props.params;
60
61
this.setState({
@@ -66,7 +66,7 @@ class ProjectDebugSymbols extends AsyncView<Props, State> {
66
method: 'DELETE',
67
complete: () => this.fetchData(),
68
});
69
- }
+ };
70
71
renderDebugFiles() {
72
const {debugFiles} = this.state;
@@ -79,7 +79,7 @@ class ProjectDebugSymbols extends AsyncView<Props, State> {
79
<DebugFileRow
80
debugFile={debugFile}
81
downloadUrl={downloadUrl}
82
- onDelete={this.onDelete}
+ onDelete={this.handleDelete}
83
key={debugFile.id}
84
/>
85
);
0 commit comments