fix empty response
Signed-off-by: nikolar <reyna.nikolayev@autodesk.com>
This commit is contained in:
+2
-1
@@ -80,7 +80,8 @@ export const FeedbackResponseTable = (props: FeedbackResponseTableProps) => {
|
||||
width: '35%',
|
||||
render: (response: ResponseRow) => (
|
||||
<>
|
||||
{response.response?.length &&
|
||||
{response?.response &&
|
||||
response.response.length > 0 &&
|
||||
response.response
|
||||
?.split(',')
|
||||
.map(res => <Chip key={res} size="small" label={res} />)}
|
||||
|
||||
Reference in New Issue
Block a user