client: recent changes list: remove the dash between the time and the note title from markup

This commit is contained in:
Adorian Doran 2024-12-13 01:53:04 +02:00
parent 556baf2782
commit aee8749bac
2 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,6 @@ export default class RecentChangesDialog extends BasicWidget {
.text(formattedTime)
.attr("title", change.date)
)
.append(' - ')
.append($noteLink));
}

View File

@ -1305,3 +1305,7 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
margin: 8px 10px;
font-size: 18px;
}
.recent-changes-content li > span:first-child::after {
content: " - ";
}