Fixed dropdown in error box.

This commit is contained in:
Jan Böhmer 2022-07-24 18:58:35 +02:00
parent 43b4c78553
commit 5d6f244e71
3 changed files with 5 additions and 5 deletions

View file

@ -46,7 +46,7 @@ const ErrorHandlerHelper = class {
let msg = `Error calling <a href="${url}">${url}</a>. `;
msg += 'Try to reload the page or contact the administrator if this error persists.'
msg += '<br><br><a class=\"btn btn-link\" data-toggle=\"collapse\" href=\"#iframe_div\" >' + 'View details' + "</a>";
msg += '<br><br><a class=\"btn btn-link\" data-bs-toggle=\"collapse\" href=\"#iframe_div\" >' + 'View details' + "</a>";
msg += "<div class=\" collapse\" id='iframe_div'><iframe height='512' width='100%' id='error-iframe'></iframe></div>";
return msg;