Fixes a bug case

vnext
Paul Schneider 8 years ago
parent c9211fbb99
commit dce233df79
1 changed files with 1 additions and 1 deletions

@ -31,7 +31,7 @@ namespace BookAStar.ViewModels
private void Bill_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) private void Bill_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{ {
Data.Bill = Bill; Data.Bill = new List<BillingLine>( Bill );
NotifyPropertyChanged("FormattedTotal"); NotifyPropertyChanged("FormattedTotal");
} }
private Estimate data; private Estimate data;

Loading…