portals you could use custom CSS to hide the .item-excerpt element.
This will also hide excerpts on search results though, and maybe other items called .item-excerpt not related to discussions. Something like this would only hide the discussion excerpt and only when it's not a search:
.DiscussionList:not(.DiscussionList--searchResults) .item-excerpt {
display: none;
}
Code not tested.