Feedback Widget Screenshot Problem

2
Hi everyone, I´m having a problem with the Feedback Widget from Mendix Appstore.  When I´m already logged in with my user account, I still have to write my name and email address even if it would be accessible.  After I take a screenshot with the feedback widget, images aren´t rendered so it looks very strange.   Does anyone know how to fix that?
asked
2 answers
3

Check the settings.json file: {Project_Directory}/theme/settings.json

Look for the "cssFiles" property and for each css path, add a forward slash, i.e.

BEFORE

"cssFiles": [
        "styles/web/css/main.css"
    ]

AFTER

"cssFiles": [
        "/styles/web/css/main.css"
    ]

 

The rendering is still a bit odd, but in my case it did solve issues where I could not even see anything on my screenshots. This is one of the answers support gave me and it did improve my screenshots.

answered
0

I solved it differently. In index.html I replaced the macro with explicit line

        <link rel="stylesheet" href="/theme.compiled.css?{{cachebust}}">

 

answered