1. Plain Plone 5/6 Installation 2. Add a workflow to an image 3. Make a workflow transition e.g. "publish" 4. The view after the transition is the based on absolute_url(), if the content is an image, i see only the Image in the browser, not the plone site I think the [redirect url](https://github.com/plone/plone.app.content/blob/master/plone/app/content/browser/content_status_modify.py#L145) should be changed to: ``` return self.request.response.redirect( context.absolute_url() + "/" + context.getLayout() ) ```