File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/bill/operations/mixins Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased] -
9+
10+ ### Fixed
11+ - Fix new many nested records failing to save when they were deleted on the form before form submission
12+
813## [ 0.21.3] - 2025-08-30
914
1015### Fixed
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module Bill::NeedsLineItems
3232 end
3333
3434 def line_items_to_delete
35- keyed_line_items - line_items_to_save
35+ ( keyed_line_items - line_items_to_save).select( & .[ " id " ]?.presence)
3636 end
3737
3838 def line_items_to_save
You can’t perform that action at this time.
0 commit comments