web/origin-manager: display the reason for a diff failure.
This commit is contained in:
parent
114f25e004
commit
e3d67622e9
@ -30,6 +30,6 @@ aside {
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#details p {
|
#details p, #details pre {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
@ -352,6 +352,10 @@ function potential_set(project, package, origin) {
|
|||||||
if (text == '') {
|
if (text == '') {
|
||||||
$('#details').html('<p>No difference</p>');
|
$('#details').html('<p>No difference</p>');
|
||||||
return;
|
return;
|
||||||
|
} else if (text.startsWith('# diff failed')) {
|
||||||
|
$('#details').html('<p>Failed to generate diff</p><pre></pre>');
|
||||||
|
$('#details pre').text(text);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
$('#details').html(Diff2Html.getPrettyHtml(text));
|
$('#details').html(Diff2Html.getPrettyHtml(text));
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user