I don't think everyone knows that clicking on the date at the top of a post makes the permalink available.
Visitors are also unlikely to know about this hidden link.

If you want to make it visible with an icon, you can use this CSS code
Version for 1.x
.Dropdown.PostMeta a.Dropdown-toggle::after{
content:"\f0c1";
font-family: "Font Awesome 6 Free";
font-weight: 900;
margin-left: 10px;
}
Version for 2.x
.Dropdown.PostMeta button.Dropdown-toggle::after{
content:"\f0c1";
font-family: "Font Awesome 6 Free";
font-weight: 900;
margin-left: 10px;
}
Replace "Font Awesome 6 Free" with the version you are using.