mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
Merge pull request #66 from Hestia-Homes/engine-file-upload
signpost budget as optional for increaing EPC
This commit is contained in:
commit
2153fc2e7d
1 changed files with 7 additions and 1 deletions
|
|
@ -708,7 +708,13 @@ export default function RemoteAssessmentModal({
|
|||
render={({ field }) => (
|
||||
<FormItem>
|
||||
<FormLabel className="text-gray-800">
|
||||
Budget (£)
|
||||
{/* We mark budget as (optional) when the goal is increasing EPC*/}
|
||||
Budget (£){" "}
|
||||
{goal === "Increasing EPC" && (
|
||||
<span className="text-sm text-gray-500">
|
||||
(optional)
|
||||
</span>
|
||||
)}
|
||||
</FormLabel>
|
||||
<FormControl>
|
||||
<Input
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue