When looking at your own profile, posts that have not yet received attention from a moderator should show up under the pending tab.
Pending posts look slightly different and do not show up under the pending tab. In my case, there is a post titled Spotify Reply Stabilization and Error Handling. It is found under All, but not under Reviewed, Rejected, or Pending.
Create a new contribution under development. I have explored the network of this page and noticed that my post has a different format from other posts. When inspecting the JSON object, I find that my first post (which has the bug) has the following Object.keys(post):
(49) ["flagged", "reviewed", "pending", "_id", "id", "author", "permlink", "category", "parent_author", "parent_permlink", "title", "body", "json_metadata", "last_update", "created", "active", "last_payout", "depth", "children", "net_rshares", "abs_rshares", "vote_rshares", "children_abs_rshares", "cashout_time", "max_cashout_time", "total_vote_weight", "reward_weight", "total_payout_value", "curator_payout_value", "author_rewards", "net_votes", "max_accepted_payout", "percent_steem_dollars", "allow_replies", "allow_votes", "allow_curation_rewards", "url", "root_title", "pending_payout_value", "total_pending_payout_value", "author_reputation", "promoted", "body_length", "__v", "replies", "reblogged_by", "beneficiaries", "deleted", "active_votes"]
Where the other posts (that do work) have the following Object.keys(post):
(51) ["moderator", "flagged", "reviewed", "pending", "_id", "id", "author", "permlink", "category", "parent_author", "parent_permlink", "title", "body", "json_metadata", "last_update", "created", "active", "last_payout", "depth", "children", "net_rshares", "abs_rshares", "vote_rshares", "children_abs_rshares", "cashout_time", "max_cashout_time", "total_vote_weight", "reward_weight", "total_payout_value", "curator_payout_value", "author_rewards", "net_votes", "max_accepted_payout", "percent_steem_dollars", "allow_replies", "allow_votes", "allow_curation_rewards", "url", "root_title", "pending_payout_value", "total_pending_payout_value", "author_reputation", "promoted", "body_length", "reserved", "__v", "replies", "reblogged_by", "beneficiaries", "deleted", "active_votes"]