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

Commit 19341a12 authored by Helen Qin's avatar Helen Qin
Browse files

Handle empty action entry subtitle

Test: manual (see bug for screenshots)
Bug: 281618168
Fix: 281618168
Change-Id: If0314aa51deafcfa13e9c95837f50b68f9eb173c
parent fcdac40e
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)
                }
            }