File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class SubmissionDataTable extends React.Component {
128
128
choice = this . findChoice ( listName , data ) ;
129
129
if ( ! choice ) {
130
130
console . error ( `Choice not found for "${ listName } " and "${ data } ".` ) ;
131
- // fallback to data to display anything meaningful
131
+ // fallback to raw data to display anything meaningful
132
132
return data ;
133
133
} else {
134
134
return (
@@ -143,9 +143,9 @@ class SubmissionDataTable extends React.Component {
143
143
{ data . split ( ' ' ) . map ( ( answer , answerIndex ) => {
144
144
choice = this . findChoice ( listName , answer ) ;
145
145
if ( ! choice ) {
146
- console . error ( `Choice not found for "${ listName } " and "${ data } ".` ) ;
147
- // fallback to data to display anything meaningful
148
- return data ;
146
+ console . error ( `Choice not found for "${ listName } " and "${ answer } ".` ) ;
147
+ // fallback to raw data to display anything meaningful
148
+ return answer ;
149
149
} else {
150
150
return (
151
151
< li key = { answerIndex } >
You can’t perform that action at this time.
0 commit comments