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.
1 parent 1bc7ab9 commit 0c861a4Copy full SHA for 0c861a4
jsapp/js/components/submissions/submissionDataTable.tsx
@@ -282,19 +282,6 @@ class SubmissionDataTable extends React.Component<SubmissionDataTableProps> {
282
);
283
}
284
285
- renderMultiplePointsData(data: string) {
286
- return (data.split(';').map((pointData, pointIndex) =>
287
- <bem.SubmissionDataTable__row m={['columns', 'point']} key={pointIndex}>
288
- <bem.SubmissionDataTable__column>
289
- P<sub>{pointIndex + 1}</sub>
290
- </bem.SubmissionDataTable__column>
291
292
- {this.renderPointsData(pointData)}
293
294
- </bem.SubmissionDataTable__row>
295
- ));
296
- }
297
-
298
renderAttachment(
299
type: AnyRowTypeName | null,
300
filename: string,
0 commit comments