[Desktop Feature Request] Wrap long note titles in note list like it is done on Mobile Android

You're welcome.

Using All notes and search over notebooks and scrolling mitigates those issues.

Since the following userchrome.css notebook list item CSS presents lesser, but similar issues to my above CSS:

.list-item-wrapper {
  height: fit-content !important;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
}

.list-item-wrapper > .list-item > .title {
  white-space: pre-wrap;
}

I think @tomasz86's suggestion in Sidebar "no wrap" option and tooltip for notebook and notes titles to tweak list JS for accommodating wrapping applies to both lists, whereas the following difference between how lists load items doesn't apply here:

As far as title wrapping for the Note List (Preview) plugin goes, this simple userchrome.css CSS works if you are OK with body copy getting cut off. Even so, a wider note list can prevent cut-off copy altogether.

.note-list-item > .content > .title {
  white-space: pre-wrap !important;
}

Overall, it does seem odd that unwrapped titles have been an issue since 2018 with how similar note titles can be. For example: Title Text Wrap in Note List

Joplin Web also having wrapped titles makes me wonder what the holdup is for desktop.