Unity List Element Right-Click menu no longer includes "Properties..." ??

I’ve found the “Properties…” context menu from a component List element extremely valuable and it doesn’t seem to be showing in newer version of Unity for me (2022.3.9f1), is this something I can configure or is my Unity install corrupted or was it simply removed?

The option still show in different versions of Unity.
2021.1.14f1
9396320--1314989--upload_2023-10-8_7-1-52.png

2022.3.9f1
9396320--1314992--upload_2023-10-8_7-3-39.png

also visible in 2022.3.7f1,
and release notes don’t seem to mention anything related to that in .8, .9, .10,
better report as a bug.

2022.3.23f1 this bug still exists
try this (in Editor Scripts)

    using System;
    using UnityEditor;
    using UnityEngine;

    [InitializeOnLoad]
    public static class ContextMenuFixing
    {
        static ContextMenuFixing()
        {
            EditorApplication.contextualPropertyMenu += OnPropertyContextMenu;
        }

        private static void OnPropertyContextMenu(GenericMenu menu, SerializedProperty property)
        {
            if (property.propertyType == SerializedPropertyType.ObjectReference)
            {
                if (property.objectReferenceValue is ScriptableObject scriptableObject)
                {
                    menu.AddItem(new GUIContent("Properties (User)"), false, () =>
                    {
                        EditorUtility.OpenPropertyEditor(scriptableObject);
                    });
                }
            }
        }
    }