With Content Moderation enabled I've configured a content type to have revisions and workflow (default Editorial Workflow).

When editing a node I can see the 'Save and Create New Draft' button with the associated toggle dropdown button.

However when selecting the toggle dropdown button nothing happens.

The 'Save and Publish' dropdown item (hidden by default) does not show which I gather is a missing JS trigger to show it.

The role I am using has the permssions to use the Publish transition.

At the moment even with the 'God' account I'm not able to Save and Publish any content using Content Moderation, unless I manually unhide (CSS display:block) the 'Save and Publish' select option.

Comments

Stephen Ollman created an issue. See original summary.

Stephen Ollman’s picture

The display:none style is on the '.dropdown-menu' class on the <ul class="dropdown-menu" role="menu"> element.

'Save and Archive' is also hidden when we have a published revision.

Stephen Ollman’s picture

A quick fix for me is:

    $('.dropdown-toggle').click(function(){
 	$(this).next('.dropdown-menu').toggle();
    });

But I suspect that this is not the end solution.

Stephen Ollman’s picture

Version: 8.2.0-rc1 » 8.3.0-rc1
timmillwood’s picture

Version: 8.3.0-rc1 » 8.3.x-dev
Issue tags: +Workflow Initiative

I can't recreate the issue, can you help?

Also, we're looking to remove the drop button in #2753717: Add select field to choose moderation state on entity forms, this update will go into 8.4.x, so if we can accurately recreate your issue it'll be worth fixing in 8.3.x.

amateescu’s picture

Status: Active » Closed (duplicate)

Like @timmillwood said above, this will be fixed by #2753717: Add select field to choose moderation state on entity forms.