Skip to content

Commit

Permalink
Update DynamicVehicleActivity.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmskywalker committed Jun 23, 2022
1 parent 69f206a commit 7d5a099
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public ValueTask<SelectList> GetSelectListAsync(object? context = default, Cance
);
if (brandValue == "Tesla")
return new ValueTask<SelectList>(
new SelectList((new[] { "Roadster", "Model S", "Model 3", "Model X", "Model Y__", "Cybertruck" }).Select(x => new SelectListItem(x)).ToList())
new SelectList((new[] { "Roadster", "Model S", "Model 3", "Model X", "Model Y", "Cybertruck" }).Select(x => new SelectListItem(x)).ToList())
);
if (brandValue == "Peugeot")
return new ValueTask<SelectList>(
Expand Down

0 comments on commit 7d5a099

Please sign in to comment.