Changes stash list to show short message instead of the name

This commit is contained in:
Abdelilah El Aissaoui 2021-12-07 01:09:58 +01:00
parent 26edec3de3
commit d4991bf7b4

View File

@ -49,7 +49,7 @@ fun Stashes(
@Composable
private fun StashRow(stash: RevCommit, onClick: () -> Unit) {
SideMenuSubentry(
text = stash.name,
text = stash.shortMessage,
iconResourcePath = "stash.svg",
onClick = onClick,
)