mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 18:25:55 +00:00
fix combined/three panel transition to expandable mode
This commit is contained in:
@@ -282,9 +282,13 @@ const Article = {
|
|||||||
console.log("packing", row.id);
|
console.log("packing", row.id);
|
||||||
row.setAttribute("data-is-packed", "1");
|
row.setAttribute("data-is-packed", "1");
|
||||||
|
|
||||||
row.querySelector(".content-inner").innerHTML = `<div class="text-center text-muted">
|
const content_inner = row.querySelector(".content-inner");
|
||||||
${__("Loading, please wait...")}
|
|
||||||
</div>`
|
// missing in unexpanded mode
|
||||||
|
if (content_inner)
|
||||||
|
content_inner.innerHTML = `<div class="text-center text-muted">
|
||||||
|
${__("Loading, please wait...")}
|
||||||
|
</div>`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
view: function (id, no_expand) {
|
view: function (id, no_expand) {
|
||||||
|
|||||||
Reference in New Issue
Block a user