Skip to content

Commit

Permalink
Revert prunings options.
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac committed Apr 30, 2024
1 parent bee10f9 commit 0ae9db3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Agri.Data/AgriConfigurationRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2095,7 +2095,7 @@ public List<SelectListItem> GetWillPlantsBePrunedDll()
}
public List<SelectListItem> GetWhereWillPruningsGoDll()
{
string[] values = { "Removed from field", "Left in row", "Left between rows" };
string[] values = { "N/A", "Removed from field", "Left in row", "Left between rows" };
var result = values.ToList().Select((item, index) =>
new SelectListItem() { Id = index, Value = item }).ToList();
return result;
Expand Down
4 changes: 2 additions & 2 deletions app/Server/src/SERVERAPI/Views/Crops/CropDetails.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@
});
$(document).on('change', '#ddlillPlantsBePruned', function (event) {
const $this = $(this);
setPlantPruningSelectValues($this);
//const $this = $(this);
//setPlantPruningSelectValues($this);
RequireCalculate();
});
Expand Down

0 comments on commit 0ae9db3

Please sign in to comment.