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

Commit

Permalink
fix-issue-3455 (#3491)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamim-emon authored Sep 11, 2024
1 parent f5565fb commit 7773e4e
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit 7773e4e

Please sign in to comment.