BFjimmy
BFjimmy
After analyzing the database structure and current functionality, here’s a proposal for introducing a review workflow in BookStack to support a "peer review" process before publishing pages. **Database Observations** **Draft...
@ssddanbrown Any thoughts on my suggestion?
Thanks for the reply @ssddanbrown
Just to add. The new Redmine interface uses SVG files for these elements. I had to remove them by adding this to the theme file: ``` a > svg, span...
Also added these: ``` a > svg, span > svg, legend > svg, .icon > svg, div > svg { display: none; } ```
This code fixes the problem: ``` (function () { const bom = '\uFEFF'; // Byte Order Mark (BOM) const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, { acceptNode: (node) => (node.nodeValue.includes(bom) ? NodeFilter.FILTER_ACCEPT...
Yes, it's just a quick-and-dirty fix until we got the issue really fixed :)