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 73fe477 commit ccbc0f7Copy full SHA for ccbc0f7
src/components/tables/CippTable.js
@@ -499,7 +499,17 @@ export default function CippTable({
499
{(massResults.length >= 1 || loopRunning) && (
500
<CCallout color="info">
501
{massResults.map((message, idx) => {
502
- return <li key={idx}>{message.data.Results}</li>
+ return (
503
+ <li key={idx}>
504
+ {
505
+ // check if message.data.Results is an array, if it is, join it.
506
+
507
+ Array.isArray(message.data.Results)
508
+ ? message.data?.Results
509
+ : message.data?.Results
510
+ }
511
+ </li>
512
+ )
513
})}
514
{loopRunning && (
515
<li>
0 commit comments