Skip to content

Commit

Permalink
feat(CB2-14450-weights-dfs): prevent duplication of ids
Browse files Browse the repository at this point in the history
  • Loading branch information
pbardy2000 committed Jan 10, 2025
1 parent 0a1ec87 commit 09cd96d
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
<!-- Gross GB (HGV/TRL only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType !== VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_grossGbWeight"
type="number"
formControlName="techRecord_grossGbWeight"
></govuk-form-group-input>
Expand All @@ -98,7 +97,6 @@
<!-- Gross EEC (HGV/TRL only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType !== VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_grossEecWeight"
type="number"
formControlName="techRecord_grossEecWeight"
></govuk-form-group-input>
Expand All @@ -107,7 +105,6 @@
<!-- Gross Kerb (PSV only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType === VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_grossKerbWeight"
type="number"
formControlName="techRecord_grossKerbWeight"
></govuk-form-group-input>
Expand All @@ -116,7 +113,6 @@
<!-- Gross Laden (PSV only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType === VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_grossLadenWeight"
type="number"
formControlName="techRecord_grossLadenWeight"
></govuk-form-group-input>
Expand All @@ -125,7 +121,6 @@
<!-- Gross GB max (PSV only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType === VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_grossGbWeight"
type="number"
formControlName="techRecord_grossGbWeight"
></govuk-form-group-input>
Expand All @@ -134,7 +129,6 @@
<!-- Gross Design -->
<td class="govuk-table__cell">
<govuk-form-group-input
id="techRecord_grossDesignWeight"
type="number"
formControlName="techRecord_grossDesignWeight"
></govuk-form-group-input>
Expand All @@ -148,7 +142,6 @@
<!-- Train GB (HGV/TRL only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType !== VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_trainGbWeight"
type="number"
formControlName="techRecord_trainGbWeight"
></govuk-form-group-input>
Expand All @@ -157,7 +150,6 @@
<!-- Train EEC (HGV/TRL only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType !== VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_trainEecWeight"
type="number"
formControlName="techRecord_trainEecWeight"
></govuk-form-group-input>
Expand All @@ -172,7 +164,6 @@
<!-- Train GB max (PSV only) -->
<td class="govuk-table__cell" *ngIf="tr.techRecord_vehicleType === VehicleTypes.PSV">
<govuk-form-group-input
id="techRecord_maxTrainGbWeight"
type="number"
formControlName="techRecord_maxTrainGbWeight"
></govuk-form-group-input>
Expand All @@ -181,7 +172,6 @@
<!-- Train Design -->
<td class="govuk-table__cell">
<govuk-form-group-input
id="techRecord_trainDesignWeight"
type="number"
formControlName="techRecord_trainDesignWeight"
></govuk-form-group-input>
Expand All @@ -195,7 +185,6 @@
<!-- Train GB -->
<td class="govuk-table__cell">
<govuk-form-group-input
id="techRecord_maxTrainGbWeight"
type="number"
formControlName="techRecord_maxTrainGbWeight"
></govuk-form-group-input>
Expand All @@ -204,7 +193,6 @@
<!-- Train EEC -->
<td class="govuk-table__cell">
<govuk-form-group-input
id="techRecord_maxTrainEecWeight"
type="number"
formControlName="techRecord_maxTrainEecWeight"
></govuk-form-group-input>
Expand All @@ -213,7 +201,6 @@
<!-- Train Design -->
<td class="govuk-table__cell">
<govuk-form-group-input
id="techRecord_maxTrainDesignWeight"
type="number"
formControlName="techRecord_maxTrainDesignWeight"
></govuk-form-group-input>
Expand Down

0 comments on commit 09cd96d

Please sign in to comment.