Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export default function ScheduleComponent(input) {
columnSpacing={{ xs: 1, sm: 2, md: 3 }}
>
<Grid width="30%">
<p className="schedule_field_name">Carrying Quesitons</p>
<p className="schedule_field_name">Carrying Questions</p>
</Grid>
<Grid width="70%">
<div className="schedule_vertical_layout">
Expand All @@ -316,7 +316,7 @@ export default function ScheduleComponent(input) {
/>
<Grid width="100%">
<p style={{ width: "100%" }}>
Carrying over any unanswered EMA questions to the next EMA
Carry over any unanswered EMA questions to the next EMA
instance
</p>
</Grid>
Expand Down
8 changes: 5 additions & 3 deletions reactapp/src/pages/SensorData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,9 @@ export default function SensorData() {
<RadioGroup
aria-labelledby="screenshot_package_specification"
name="screenshot_package_specification"
value={applicationSensor.screenshot_package_specification}
value={
applicationSensor.screenshot_package_specification || "2"
}
row
>
<FormControlLabel
Expand Down Expand Up @@ -1113,7 +1115,7 @@ export default function SensorData() {
row
>
<FormControlLabel
value="0"
value="metric"
control={<Radio />}
label="Metric"
onClick={(_, checked) => {
Expand All @@ -1124,7 +1126,7 @@ export default function SensorData() {
}}
/>
<FormControlLabel
value="1"
value="imperial"
control={<Radio />}
label="Imperial"
onClick={(_, checked) => {
Expand Down