mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Merge pull request #18145 from mvdbeek/fix_legacy_page_view
[24.0] Fix Legacy HTML page view
This commit is contained in:
@@ -32,7 +32,7 @@ export default {
|
||||
if (content) {
|
||||
const vDom = document.createElement("div");
|
||||
vDom.innerHTML = content;
|
||||
const children = vDom.children;
|
||||
const children = Array.from(vDom.children);
|
||||
children.forEach((child) => {
|
||||
if (child.classList.contains("embedded-item")) {
|
||||
const splitId = child.id.split("-");
|
||||
|
||||
Reference in New Issue
Block a user