Just a note, for someone who may be looking in to this.
- When logged out and you tap a discussion, it opens immediately.
- When logged in, tapping a discussion produces three vertical dots just to the right of the post count. Tapping discussion again, opens the discussion.
- Logged in, I tapped a discussion and produced the three vertical dots. I tapped to the right of the dots, which makes them disappear. Tap the discussion again, three dots again appear. You can do this repeatedly, without the discussion ever opening.
Edit:
Additional observation:
As a temporary test, I added the following CSS for touch devices:
@media (hover: none), (pointer: coarse) {
.DiscussionListItem-controls {
opacity: 0.45;
visibility: visible;
}
}
With that change, the discussions once again open with a single tap.
Changing only opacity to 0 (while leaving visibility: visible) restores the original double-tap behavior.
Those were the only changes made between the two tests.
I don't consider this a solution, only a diagnostic observation. It changes the intended UI by making the discussion actions visible on touch devices, but the change consistently restores one-tap navigation.