Skip to content

Commit

Permalink
escalation inputs for the gp model
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiyanl committed Apr 18, 2022
1 parent 4a48403 commit 85836c1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
interface Props {
inputs: EscalationInflationInputModGP;
setInputs: (inputs: any) => void;
disabled: boolean;
}

export const EscalationInflationInputGP = (props: Props) => {
Expand All @@ -32,6 +33,7 @@ export const EscalationInflationInputGP = (props: Props) => {
GeneralInflation: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%</InputGroupAddon>
</InputGroup>
Expand All @@ -52,6 +54,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationBiomassFuel: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%/year</InputGroupAddon>
</InputGroup>
Expand All @@ -71,6 +74,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationDualFuel: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%/year</InputGroupAddon>
</InputGroup>
Expand All @@ -90,6 +94,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationProductionTaxCredit: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%</InputGroupAddon>
</InputGroup>
Expand All @@ -109,6 +114,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationHeatSales: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%/year</InputGroupAddon>
</InputGroup>
Expand All @@ -126,6 +132,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationCharSales: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%/year</InputGroupAddon>
</InputGroup>
Expand All @@ -145,6 +152,7 @@ export const EscalationInflationInputGP = (props: Props) => {
EscalationOther: e.target.value
})
}
disabled={props.disabled}
/>
<InputGroupAddon addonType='append'>%/year</InputGroupAddon>
</InputGroup>
Expand Down

0 comments on commit 85836c1

Please sign in to comment.