Skip to content

Commit

Permalink
fix ibond addition
Browse files Browse the repository at this point in the history
  • Loading branch information
rrelyea committed May 1, 2024
1 parent ac20e68 commit dc53508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pages/AccountView.razor
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ else if (appData?.FamilyData == null)
account.SelectedInvestment.Selected = false;
}

account.SelectedInvestment = new Investment() { Funds = Funds, Selected = true, Ticker = "IBOND" };
account.SelectedInvestment = new Investment() { Funds = Funds, Selected = true, Ticker = "IBOND", AssetType = AssetTypes.IBond };
account.Investments.Add(account.SelectedInvestment);

account.SelectedInvestment.SelectedTransaction = new Transaction() { Type = "Edit" };
Expand Down

0 comments on commit dc53508

Please sign in to comment.