Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

fix-issue-3455 #3491

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ data class TransactionsScreen(
val transactionType: TransactionType? = null,
val accountIdFilterList: List<UUID> = persistentListOf(),
val transactions: List<Transaction> = persistentListOf()
) : Screen
) : Screen {
override val isLegacy: Boolean
get() = true
}

data class PieChartStatisticScreen(
val type: TransactionType,
Expand All @@ -68,7 +71,7 @@ data class EditPlannedScreen(

fun mandatoryFilled(): Boolean {
return amount != null && amount > 0.0 &&
accountId != null
accountId != null
}
}

Expand Down