@Leanne @rtb1982
we can confirmed that this is an issue will try to provide a fix an update this weekend,
if you need a quick fix add this code to your theme’s functions.php file or to a module
function register_ims_post_status(){
register_post_status( 'expire', array(
'label' => _x( 'Expired', 'post' ),
'public' => false,
'exclude_from_search' => true,
'show_in_admin_all_list' => true,
'show_in_admin_status_list' => true,
'label_count' => _n_noop( 'Expired (%s)', 'Expired (%s)' ),
) );
}
add_action( 'init','register_ims_post_status',50 );