Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 070ab755 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Handle empty action entry subtitle" into udc-dev am: 5756c965

parents 3482914f 5756c965
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -255,7 +255,7 @@ fun ActionEntry(
            Column(modifier = Modifier.wrapContentSize()
                .padding(start = 16.dp, top = 16.dp, bottom = 16.dp)) {
                SmallTitleText(entryHeadlineText)
                if (entrySecondLineText != null) {
                if (entrySecondLineText != null && entrySecondLineText.isNotEmpty()) {
                    BodySmallText(entrySecondLineText)
                }
            }