Skip to content

Commit

Permalink
Merge pull request #711 from bcgov/704-layout
Browse files Browse the repository at this point in the history
Fix[NMP-704]: UI Fertigation List Order and Layout
  • Loading branch information
lunamoonmoon authored Dec 4, 2024
2 parents 1605c97 + 02a95d1 commit 71b9cd7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions app/Agri.Data/SeedData/FertigationData.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,30 +201,30 @@
],
"FertilizerTypes":[
{
"Id": 1,
"Name": "Dry Fertilizer",
"DryLiquid": "Dry",
"Id": 3,
"Name": "Liquid Fertilizer",
"LiquidSolid": "Solid",
"Custom": false,
"StaticDataVersionId": 14
},
{
"Id": 2,
"Name": "Dry Fertilizer (Custom)",
"LiquidSolid": "Liquid",
"Id": 4,
"Name": "Liquid Fertilizer (Custom)",
"LiquidSolid": "Solid",
"Custom": true,
"StaticDataVersionId": 14
},
{
"Id": 3,
"Name": "Liquid Fertilizer",
"LiquidSolid": "Solid",
"Id": 1,
"Name": "Dry Fertilizer",
"DryLiquid": "Dry",
"Custom": false,
"StaticDataVersionId": 14
},
{
"Id": 4,
"Name": "Liquid Fertilizer (Custom)",
"LiquidSolid": "Solid",
"Id": 2,
"Name": "Dry Fertilizer (Custom)",
"LiquidSolid": "Liquid",
"Custom": true,
"StaticDataVersionId": 14
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</select>
<span asp-validation-for="selTypOption" class="text-danger"></span>
</div>
<div class="form-group col-sm-3" style="width:200px;">
<div class="form-group col-sm-3">
@if(Model.selTypOption == "4" || Model.selTypOption == "2"){ // if custom liquid fertigation
<div class="form-group col-sm-2" style="margin-right:0px; padding-right:0px; width:60px">
<label for="valN">N(%)</label>
Expand Down

0 comments on commit 71b9cd7

Please sign in to comment.