From d4991bf7b415eb945c954e12244c06f705124484 Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Tue, 7 Dec 2021 01:09:58 +0100 Subject: [PATCH] Changes stash list to show short message instead of the name --- src/main/kotlin/app/ui/Stashes.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/ui/Stashes.kt b/src/main/kotlin/app/ui/Stashes.kt index 36ec69f..3337bce 100644 --- a/src/main/kotlin/app/ui/Stashes.kt +++ b/src/main/kotlin/app/ui/Stashes.kt @@ -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, )