We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4f72f5 commit fbb12d2Copy full SHA for fbb12d2
common/src/commonMain/kotlin/cz/frantisekmasa/wfrp_master/common/compendium/trapping/TrappingDialog.kt
@@ -439,17 +439,17 @@ private class PriceFormData(
439
crowns =
440
inputValue(
441
money?.getCrowns()?.toString() ?: "",
442
- Rules.NonNegativeInteger(),
+ Rules.ifNotBlank(Rules.NonNegativeInteger()),
443
),
444
shillings =
445
446
money?.getShillings()?.toString() ?: "",
447
448
449
pennies =
450
451
money?.getPennies()?.toString() ?: "",
452
453
454
)
455
}
0 commit comments