Fixed: Prevent unexpected data breaking Series Import
This commit is contained in:
parent
fb76c237bf
commit
b8714d80a1
|
@ -249,13 +249,19 @@ class ImportSeriesFooter extends Component {
|
||||||
body={
|
body={
|
||||||
<ul>
|
<ul>
|
||||||
{
|
{
|
||||||
|
Array.isArray(importError.responseJSON) ?
|
||||||
importError.responseJSON.map((error, index) => {
|
importError.responseJSON.map((error, index) => {
|
||||||
return (
|
return (
|
||||||
<li key={index}>
|
<li key={index}>
|
||||||
{error.errorMessage}
|
{error.errorMessage}
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})
|
}) :
|
||||||
|
<li>
|
||||||
|
{
|
||||||
|
JSON.stringify(importError.responseJSON)
|
||||||
|
}
|
||||||
|
</li>
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,13 +118,19 @@ class ImportSeriesSelectFolder extends Component {
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{
|
{
|
||||||
|
Array.isArray(saveError.responseJSON) ?
|
||||||
saveError.responseJSON.map((e, index) => {
|
saveError.responseJSON.map((e, index) => {
|
||||||
return (
|
return (
|
||||||
<li key={index}>
|
<li key={index}>
|
||||||
{e.errorMessage}
|
{e.errorMessage}
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})
|
}) :
|
||||||
|
<li>
|
||||||
|
{
|
||||||
|
JSON.stringify(saveError.responseJSON)
|
||||||
|
}
|
||||||
|
</li>
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</Alert> :
|
</Alert> :
|
||||||
|
|
Loading…
Reference in New Issue