Fixes padding of the zap split section on the master note
This commit is contained in:
@@ -644,8 +644,12 @@ fun NoteMaster(
|
|||||||
val zapSplits = remember(noteEvent) { noteEvent?.hasZapSplitSetup() ?: false }
|
val zapSplits = remember(noteEvent) { noteEvent?.hasZapSplitSetup() ?: false }
|
||||||
if (zapSplits && noteEvent != null) {
|
if (zapSplits && noteEvent != null) {
|
||||||
Spacer(modifier = DoubleVertSpacer)
|
Spacer(modifier = DoubleVertSpacer)
|
||||||
|
Row(
|
||||||
|
modifier = Modifier.padding(horizontal = 12.dp),
|
||||||
|
) {
|
||||||
DisplayZapSplits(noteEvent, false, accountViewModel, nav)
|
DisplayZapSplits(noteEvent, false, accountViewModel, nav)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ReactionsRow(note, true, editState, accountViewModel, nav)
|
ReactionsRow(note, true, editState, accountViewModel, nav)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user