From f4370362370d7c53283587566b6071614220243b Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Thu, 19 Dec 2019 12:33:04 -0500 Subject: [PATCH 1/2] Change other to Other --- src/BuildingOperatingChallenges.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildingOperatingChallenges.js b/src/BuildingOperatingChallenges.js index 71d380cb7..4ef926a33 100644 --- a/src/BuildingOperatingChallenges.js +++ b/src/BuildingOperatingChallenges.js @@ -21,7 +21,7 @@ export default class BuildingOperatingChallenges extends React.Component { TooHot: 'The building is too hot', NotEnoughDomesticHotWater: 'The building doesn’t get enough domestic hot water', BuildingViolations: 'Building violations', - Other: 'other' + Other: 'Other' } } -- GitLab From 85f116609aeb17051943f1ab3e7948d4fa10033c Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Thu, 19 Dec 2019 14:53:08 -0500 Subject: [PATCH 2/2] Move not sure option to last --- src/BuildingFutureImprovement.js | 2 +- src/BuildingHeatingSystem.js | 2 +- src/BuildingPastImprovement.js | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/BuildingFutureImprovement.js b/src/BuildingFutureImprovement.js index 58e7657a3..376891cad 100644 --- a/src/BuildingFutureImprovement.js +++ b/src/BuildingFutureImprovement.js @@ -44,8 +44,8 @@ export default class BuildingFutureImprovement extends React.Component { 'Electric baseboard', 'Individual heat pumps', 'I don\'t have a heating system', - 'I\'m not sure', 'Other', + 'I\'m not sure', ]; this.coolingSystemNames = [ 'Window A/C units', diff --git a/src/BuildingHeatingSystem.js b/src/BuildingHeatingSystem.js index dc1f7d1e5..cb7eca0a0 100644 --- a/src/BuildingHeatingSystem.js +++ b/src/BuildingHeatingSystem.js @@ -15,8 +15,8 @@ export default class BuildingHeatingSystem extends React.Component { 'Electric baseboard', 'Individual heat pumps', 'I don\'t have a heating system', - 'I\'m not sure', 'Other', + 'I\'m not sure', ]; } diff --git a/src/BuildingPastImprovement.js b/src/BuildingPastImprovement.js index 55955cc28..ca89286ff 100644 --- a/src/BuildingPastImprovement.js +++ b/src/BuildingPastImprovement.js @@ -1,8 +1,6 @@ import React from "react"; import { Row, Col, Button, Input } from 'reactstrap'; import './index.css'; -import { yieldExpression } from "@babel/types"; - export default class BuildingPastImprovement extends React.Component { constructor(props) { @@ -44,8 +42,8 @@ export default class BuildingPastImprovement extends React.Component { 'Electric baseboard', 'Individual heat pumps', 'I don\'t have a heating system', - 'I\'m not sure', 'Other', + 'I\'m not sure', ]; this.coolingSystemNames = [ 'Window A/C units', -- GitLab